comparison Makefile.am @ 200:a34620942998 noffle

[svn] Minor fix needed by configure option --with-configfile. Fixed --program-prefix.
author mirkol
date Thu, 08 Nov 2001 20:51:05 +0000
parents 2842f50feb55
children 9fb4b7d7e64b
comparison
equal deleted inserted replaced
199:33844d68cab1 200:a34620942998
19 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INSTALL $(DOCDIR) 19 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INSTALL $(DOCDIR)
20 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NEWS $(DOCDIR) 20 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NEWS $(DOCDIR)
21 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/README $(DOCDIR) 21 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/README $(DOCDIR)
22 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/TODO $(DOCDIR) 22 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/TODO $(DOCDIR)
23 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/noffle.conf.example \ 23 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/noffle.conf.example \
24 /etc/noffle.conf.example 24 $(CONFIGFILE).example
25 chown news.news /etc/noffle.conf.example 25 chown news.news $(CONFIGFILE).example
26 chmod 600 /etc/noffle.conf.example 26 chmod 600 $(CONFIGFILE).example
27 @echo 27 @echo
28 @echo "****************************************************************" 28 @echo "****************************************************************"
29 @echo "You should now copy /etc/noffle.conf.example to /etc/noffle.conf" 29 @echo "You should now copy $(CONFIGFILE).example to $(CONFIGFILE)"
30 @echo "and edit that copy." 30 @echo "and edit that copy."
31 @echo "****************************************************************" 31 @echo "****************************************************************"
32 @echo 32 @echo
33 33
34 install-exec-local: 34 install-exec-local:
35 chown news.news $(bindir)/$(PACKAGE) 35 chown news.news $(bindir)/`echo $(PACKAGE)|sed '$(transform)'`
36 chmod 4755 $(bindir)/$(PACKAGE) 36 chmod 4755 $(bindir)/`echo $(PACKAGE)|sed '$(transform)'`
37 37
38 uninstall-local: 38 uninstall-local:
39 rm -f $(DOCDIR)/AUTHORS 39 rm -f $(DOCDIR)/AUTHORS
40 rm -f $(DOCDIR)/COPYING 40 rm -f $(DOCDIR)/COPYING
41 rm -f $(DOCDIR)/ChangeLog 41 rm -f $(DOCDIR)/ChangeLog
42 rm -f $(DOCDIR)/INSTALL 42 rm -f $(DOCDIR)/INSTALL
43 rm -f $(DOCDIR)/NEWS 43 rm -f $(DOCDIR)/NEWS
44 rm -f $(DOCDIR)/README 44 rm -f $(DOCDIR)/README
45 rm -f $(DOCDIR)/TODO 45 rm -f $(DOCDIR)/TODO
46 rm -f /etc/noffle.conf.example 46 rm -f $(CONFIGFILE).example
47 @echo 47 @echo
48 @echo "****************************************************************" 48 @echo "****************************************************************"
49 @echo "The NOFFLE spool directory $(SPOOLDIR) and the configfile" 49 @echo "The NOFFLE spool directory $(SPOOLDIR) and the configfile"
50 @echo "$(CONFIGFILE) have *not* been removed. Please do this" 50 @echo "$(CONFIGFILE) have *not* been removed. Please do this"
51 @echo "manually." 51 @echo "manually."