The branch, master has been updated
       via  dfe3b77c Some Makefile improvements.
       via  cbe3b2bf Tweak a comment.
      from  b1ae7fc9 INSTALL changes, including some Fedora packages.

https://git.samba.org/?p=rsync.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit dfe3b77cb5c51358749e8613ba90210c2595fc99
Author: Wayne Davison <wa...@opencoder.net>
Date:   Wed Jul 29 11:51:55 2020 -0700

    Some Makefile improvements.
    
    - Improve distclean.
    - Remove proto.h from GENFILES (we don't need to distribute it).
    - Improve finddead target.

commit cbe3b2bfe5ced19838e9175b07fbfa9a6c2f32d2
Author: Wayne Davison <wa...@opencoder.net>
Date:   Wed Jul 29 11:50:00 2020 -0700

    Tweak a comment.

-----------------------------------------------------------------------

Summary of changes:
 Makefile.in             | 20 ++++++++------------
 packaging/auto-Makefile |  2 +-
 prepare-source          |  4 ++--
 3 files changed, 11 insertions(+), 15 deletions(-)


Changeset truncated at 500 lines:

diff --git a/Makefile.in b/Makefile.in
index 1c040172..1c53af6a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -32,7 +32,7 @@ SHELL=/bin/sh
 SIMD_x86_64=simd-checksum-x86_64.o
 ASM_x86_64=lib/md5-asm-x86_64.o
 
-GENFILES=configure.sh aclocal.m4 config.h.in proto.h proto.h-tstamp rsync.1 
rsync.1.html \
+GENFILES=configure.sh aclocal.m4 config.h.in rsync.1 rsync.1.html \
         rsync-ssl.1 rsync-ssl.1.html rsyncd.conf.5 rsyncd.conf.5.html
 HEADERS=byteorder.h config.h errcode.h proto.h rsync.h ifuncs.h itypes.h 
inums.h \
        lib/pool_alloc.h lib/mdigest.h lib/md-defines.h version.h
@@ -250,7 +250,7 @@ rsyncd.conf.5: rsyncd.conf.5.md md2man version.h Makefile
 clean: cleantests
        rm -f *~ $(OBJS) $(CHECK_PROGS) $(CHECK_OBJS) $(CHECK_SYMLINKS) \
                rounding rounding.h *.old rsync*.1 rsync*.5 rsync*.html \
-               daemon-parm.h help-*.h default-*.h
+               daemon-parm.h help-*.h default-*.h proto.h proto.h-tstamp
 
 .PHONY: cleantests
 cleantests:
@@ -261,16 +261,11 @@ cleantests:
 # the source directory.
 .PHONY: distclean
 distclean: clean
-       rm -f Makefile config.h config.status
-       rm -f stunnel-rsyncd.conf
-       rm -f lib/dummy popt/dummy zlib/dummy
-       rm -f $(srcdir)/Makefile $(srcdir)/config.h $(srcdir)/config.status
-       rm -f $(srcdir)/lib/dummy $(srcdir)/popt/dummy $(srcdir)/zlib/dummy
-       rm -f config.cache config.log
-       rm -f $(srcdir)/config.cache $(srcdir)/config.log
-       rm -f shconfig $(srcdir)/shconfig
-       rm -f $(GENFILES)
-       rm -rf autom4te.cache
+       for dir in $(srcdir) . ; do \
+           (cd "$$dir" && rm -rf Makefile config.h config.status 
stunnel-rsyncd.conf \
+            lib/dummy popt/dummy zlib/dummy config.cache config.log shconfig \
+            $(GENFILES) autom4te.cache) ; \
+       done
 
 # 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
@@ -280,6 +275,7 @@ finddead:
        nm *.o */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt
        nm *.o */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt
        comm -13 nmused.txt nmfns.txt
+       @rm nmused.txt nmfns.txt
 
 # 'check' is the GNU name, 'test' is the name for everybody else :-)
 .PHONY: test
diff --git a/packaging/auto-Makefile b/packaging/auto-Makefile
index e50277cb..29d2d688 100644
--- a/packaging/auto-Makefile
+++ b/packaging/auto-Makefile
@@ -1,6 +1,6 @@
 TARGETS := all install install-ssl-daemon install-all install-strip conf gen 
gensend reconfigure restatus \
        proto man clean cleantests distclean test check check29 check30 
installcheck splint \
-       doxygen doxygen-upload
+       doxygen doxygen-upload finddead
 
 .PHONY: $(TARGETS) auto-prep
 
diff --git a/prepare-source b/prepare-source
index 92763508..f5b7b46c 100755
--- a/prepare-source
+++ b/prepare-source
@@ -5,8 +5,8 @@
 # Specify one action or more than one to provide a fall-back:
 #
 #   build     build the config files [the default w/no arg]
-#   fetch     fetch the latest dev config files
-#   fetchgen  fetch all the latest dev generated files
+#   fetch     fetch the latest dev autoconfig files
+#   fetchgen  fetch all the latest dev generated files (including man pages)
 #   fetchSRC  fetch the latest dev source files [NON-GENERATED FILES]
 #
 # The script stops after the first successful action.


-- 
The rsync repository.

_______________________________________________
rsync-cvs mailing list
rsync-cvs@lists.samba.org
https://lists.samba.org/mailman/listinfo/rsync-cvs

Reply via email to