"make distclean": We try to delete built files from both the source
[rsync/rsync.git] / Makefile.in
index 9171b69..318aa64 100644 (file)
@@ -12,6 +12,7 @@ CFLAGS=@CFLAGS@
 LDFLAGS=@LDFLAGS@
 
 INSTALLCMD=@INSTALL@
+INSTALLMAN=@INSTALL@
 
 srcdir=@srcdir@
 VPATH=$(srcdir)
@@ -56,8 +57,8 @@ install: all
        ${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
+       ${INSTALLMAN} -m 644 $(srcdir)/rsync.1 ${mandir}/man1
+       ${INSTALLMAN} -m 644 $(srcdir)/rsyncd.conf.5 ${mandir}/man5
 
 install-strip:
        $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install
@@ -87,13 +88,17 @@ 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
 
 # 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
@@ -133,3 +138,18 @@ installcheck: $(CHECK_PROGS)
        POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh
 
 # TODO: Add 'dist' target; need to know which files will be included
+
+# Run the SPLINT (Secure Programming Lint) tool.  <www.splint.org>
+.PHONY: splint
+splint: 
+       splint +unixlib +gnuextensions -weak rsync.c
+
+
+rsync.dvi: doc/rsync.texinfo
+       texi2dvi -o $@ $<
+
+rsync.ps: rsync.dvi    
+       dvips -ta4 -o $@ $<
+
+rsync.pdf: doc/rsync.texinfo
+       texi2dvi -o $@ --pdf $<