X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4610ac79c24c27b309887dd493c5900568948670..7a176e87d56de890fed07b1621277ab74b21b706:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 318aa646..c88a890b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -53,15 +53,15 @@ all: rsync man: rsync.1 rsyncd.conf.5 install: all - -mkdir -p ${bindir} - ${INSTALLCMD} -m 755 rsync ${bindir} - -mkdir -p ${mandir}/man1 - -mkdir -p ${mandir}/man5 - ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${mandir}/man1 - ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5 + -mkdir -p ${DESTDIR}${bindir} + ${INSTALLCMD} ${STRIP} -m 755 rsync ${DESTDIR}${bindir} + -mkdir -p ${DESTDIR}${mandir}/man1 + -mkdir -p ${DESTDIR}${mandir}/man5 + ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${DESTDIR}${mandir}/man1 + ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${DESTDIR}${mandir}/man5 install-strip: - $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install + $(MAKE) STRIP='-s' install rsync: $(OBJS) @echo "Please ignore warnings below about mktemp -- it is used in a safe way" @@ -91,14 +91,18 @@ proto: clean: rm -f *~ $(OBJS) rsync $(TLS_OBJ) tls rm -rf ./testtmp - rm -f config.cache # We try to delete built files from both the source and build # directories, just in case somebody previously configured things in # the source directory. distclean: clean rm -f Makefile config.h config.status - rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status + rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status + + rm -f config.cache config.log + rm -f $(srcdir)/config.cache $(srcdir)/config.log + + rm -f shconfig $(srcdir)/shconfig # this target is really just for my use. It only works on a limited # range of machines and is used to produce a list of potentially