X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6216ca2c70e48be27b635e78fc5f40d4fb860e73..7a176e87d56de890fed07b1621277ab74b21b706:/Makefile.in diff --git a/Makefile.in b/Makefile.in index a4f898c8..c88a890b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -12,6 +12,7 @@ CFLAGS=@CFLAGS@ LDFLAGS=@LDFLAGS@ INSTALLCMD=@INSTALL@ +INSTALLMAN=@INSTALL@ srcdir=@srcdir@ VPATH=$(srcdir) @@ -52,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 - ${INSTALLCMD} -m 644 $(srcdir)/rsync.1 ${mandir}/man1 - ${INSTALLCMD} -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" @@ -87,13 +88,21 @@ rsyncd.conf.5: rsyncd.conf.yo proto: cat $(srcdir)/*.c $(srcdir)/lib/compat.c | awk -f $(srcdir)/mkproto.awk > $(srcdir)/proto.h -clean: +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 Makefile config.h 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 @@ -134,6 +143,12 @@ installcheck: $(CHECK_PROGS) # TODO: Add 'dist' target; need to know which files will be included +# Run the SPLINT (Secure Programming Lint) tool. +.PHONY: splint +splint: + splint +unixlib +gnuextensions -weak rsync.c + + rsync.dvi: doc/rsync.texinfo texi2dvi -o $@ $<