X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/daa3d0e2da1410a88046de97fb0b4d73380e6978..4cf64834ed182e6c10f2213f84d8d33a273b3896:/Makefile.in diff --git a/Makefile.in b/Makefile.in index d7bdf7c2..74fe4401 100644 --- a/Makefile.in +++ b/Makefile.in @@ -88,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 @@ -135,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 $@ $<