This is an attempt to remove generated files from the rsync repository
authorWayne Davison <wayned@samba.org>
Fri, 9 Nov 2007 16:22:20 +0000 (16:22 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 9 Nov 2007 16:22:20 +0000 (16:22 +0000)
while still supporting the samba build farm.  Let's see if it works.

prepare-source.mak

index 3728be8..9acd3e4 100644 (file)
@@ -1,14 +1,16 @@
-gen: configure config.h.in proto.h man
+gen: gen_no_man man
 
-configure: configure.in aclocal.m4
-       autoconf
+gen_no_man: configure.sh config.h.in proto.h
+
+configure.sh: configure.in aclocal.m4
+       autoconf -o configure.sh
 
 config.h.in: configure.in aclocal.m4
        autoheader && touch config.h.in
 
 proto.h: *.c lib/compat.c
        cat *.c lib/compat.c | awk -f mkproto.awk >proto.h.new
-       if diff proto.h proto.h.new >/dev/null; then \
+       if diff proto.h proto.h.new >/dev/null 2>&1; then \
          rm proto.h.new; \
        else \
          mv proto.h.new proto.h; \