diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-26 17:52:14 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-26 17:52:14 +0000 |
commit | 6599d38daaf63f40761a3ef7fe8824957a0b33c9 (patch) | |
tree | fdbb4bb88c08d12024329f53e1bcd19da5ca516d /Makefile.in | |
parent | d3e49ec2574301f63f067c939730c2c61027c453 (diff) | |
download | fetchmail-6599d38daaf63f40761a3ef7fe8824957a0b33c9.tar.gz fetchmail-6599d38daaf63f40761a3ef7fe8824957a0b33c9.tar.bz2 fetchmail-6599d38daaf63f40761a3ef7fe8824957a0b33c9.zip |
Ready for release.
svn path=/trunk/; revision=1863
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/Makefile.in b/Makefile.in index ce6c6d3e..fadc7b13 100644 --- a/Makefile.in +++ b/Makefile.in @@ -127,24 +127,17 @@ TAGS: $(tagsrcs) tags: $(tagsrcs) $(CTAGS) $(tagsrcs) -.PHONY: install installdirs uninstall -install: installdirs $(bindir)/fetchmail $(bindir)/fetchmailconf $(mandir)/fetchmail.$(manext) - -installdirs: +.PHONY: install uninstall +install: + @echo "Creating installation directories..." $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(mandir) - -$(bindir)/fetchmail: fetchmail @echo "Installing fetchmail binary..." - $(INSTALL_PROGRAM) fetchmail $@ - -$(bindir)/fetchmailconf: fetchmailconf + $(INSTALL_PROGRAM) ${srcdir}/fetchmail $(bindir)/fetchmail @echo "Installing fetchmail configurator..." - $(INSTALL_PROGRAM) fetchmailconf $@ - -$(mandir)/fetchmail.$(manext): fetchmail.man + $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf @echo "Installing manual page..." - $(INSTALL_DATA) $(srcdir)/fetchmail.man $@ - ln -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) + $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmailconf.$(manext) + ln -sf $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) uninstall: rm -f $(bindir)/fetchmail $(bindir)/fetchmailconf @@ -216,7 +209,7 @@ config = $(srcdir)/Makefile.in $(srcdir)/configure.in $(srcdir)/configure \ $(srcdir)/config.guess $(srcdir)/config.h.in $(srcdir)/config.sub \ $(srcdir)/acconfig.h scripts = $(srcdir)/install.sh $(srcdir)/mkinstalldirs \ - $(srcdir)/specgen.sh $(srcdir)/lsmgen.sh + $(srcdir)/specgen.sh $(srcdir)/lsmgen.sh $(srcdir)/fetchmailconf all = $(docs) $(config) $(srcs) $(parser) $(headers) $(extra) $(scripts) \ $(srcdir)/contrib/*[A-Za-uw-z] $(srcdir)/MANIFEST @@ -261,4 +254,9 @@ rpm: dist cp $(RPMROOT)/RPMS/`arch|sed 's/i[4-9]86/i386/'`/fetchmail-$(VERS)*.rpm $(srcdir) cp $(RPMROOT)/SRPMS/fetchmail-$(VERS)*.src.rpm $(srcdir) +# The following sets edit modes for GNU EMACS. +# Local Variables: +# compile-command:"configure" +# End: + # Automatically generated dependencies will be put at the end of the makefile. |