Mercurial > noffle
comparison Makefile.in @ 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 | fd821441f016 |
children | b4f1731a6470 |
comparison
equal
deleted
inserted
replaced
199:33844d68cab1 | 200:a34620942998 |
---|---|
262 cd $(top_srcdir) \ | 262 cd $(top_srcdir) \ |
263 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile | 263 && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile |
264 @for file in $(DISTFILES); do \ | 264 @for file in $(DISTFILES); do \ |
265 d=$(srcdir); \ | 265 d=$(srcdir); \ |
266 if test -d $$d/$$file; then \ | 266 if test -d $$d/$$file; then \ |
267 cp -pr $$d/$$file $(distdir)/$$file; \ | 267 cp -pr $$/$$file $(distdir)/$$file; \ |
268 else \ | 268 else \ |
269 test -f $(distdir)/$$file \ | 269 test -f $(distdir)/$$file \ |
270 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ | 270 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ |
271 || cp -p $$d/$$file $(distdir)/$$file || :; \ | 271 || cp -p $$d/$$file $(distdir)/$$file || :; \ |
272 fi; \ | 272 fi; \ |
371 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INSTALL $(DOCDIR) | 371 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/INSTALL $(DOCDIR) |
372 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NEWS $(DOCDIR) | 372 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/NEWS $(DOCDIR) |
373 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/README $(DOCDIR) | 373 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/README $(DOCDIR) |
374 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/TODO $(DOCDIR) | 374 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/TODO $(DOCDIR) |
375 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/noffle.conf.example \ | 375 $(INSTALL_DATA) -o 0 -g 0 $(srcdir)/noffle.conf.example \ |
376 /etc/noffle.conf.example | 376 $(CONFIGFILE).example |
377 chown news.news /etc/noffle.conf.example | 377 chown news.news $(CONFIGFILE).example |
378 chmod 600 /etc/noffle.conf.example | 378 chmod 600 $(CONFIGFILE).example |
379 @echo | 379 @echo |
380 @echo "****************************************************************" | 380 @echo "****************************************************************" |
381 @echo "You should now copy /etc/noffle.conf.example to /etc/noffle.conf" | 381 @echo "You should now copy $(CONFIGFILE).example to $(CONFIGFILE)" |
382 @echo "and edit that copy." | 382 @echo "and edit that copy." |
383 @echo "****************************************************************" | 383 @echo "****************************************************************" |
384 @echo | 384 @echo |
385 | 385 |
386 install-exec-local: | 386 install-exec-local: |
387 chown news.news $(bindir)/$(PACKAGE) | 387 chown news.news $(bindir)/`echo $(PACKAGE)|sed '$(transform)'` |
388 chmod 4755 $(bindir)/$(PACKAGE) | 388 chmod 4755 $(bindir)/`echo $(PACKAGE)|sed '$(transform)'` |
389 | 389 |
390 uninstall-local: | 390 uninstall-local: |
391 rm -f $(DOCDIR)/AUTHORS | 391 rm -f $(DOCDIR)/AUTHORS |
392 rm -f $(DOCDIR)/COPYING | 392 rm -f $(DOCDIR)/COPYING |
393 rm -f $(DOCDIR)/ChangeLog | 393 rm -f $(DOCDIR)/ChangeLog |
394 rm -f $(DOCDIR)/INSTALL | 394 rm -f $(DOCDIR)/INSTALL |
395 rm -f $(DOCDIR)/NEWS | 395 rm -f $(DOCDIR)/NEWS |
396 rm -f $(DOCDIR)/README | 396 rm -f $(DOCDIR)/README |
397 rm -f $(DOCDIR)/TODO | 397 rm -f $(DOCDIR)/TODO |
398 rm -f /etc/noffle.conf.example | 398 rm -f $(CONFIGFILE).example |
399 @echo | 399 @echo |
400 @echo "****************************************************************" | 400 @echo "****************************************************************" |
401 @echo "The NOFFLE spool directory $(SPOOLDIR) and the configfile" | 401 @echo "The NOFFLE spool directory $(SPOOLDIR) and the configfile" |
402 @echo "$(CONFIGFILE) have *not* been removed. Please do this" | 402 @echo "$(CONFIGFILE) have *not* been removed. Please do this" |
403 @echo "manually." | 403 @echo "manually." |