X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/091b3459f6e89ff3f04b8287e490789011586461..a5fd4b6e6e3d4649f0f65cd4a0385283fe69154c:/Makefile.in diff --git a/Makefile.in b/Makefile.in index c0908462..8594a9de 100644 --- a/Makefile.in +++ b/Makefile.in @@ -80,13 +80,21 @@ $(CHECK_OBJS): $(HEADERS) flist.o: rounding.h -rounding.h: mkrounding$(EXEEXT) - ./mkrounding$(EXEEXT) >rounding.h - -mkrounding$(EXEEXT): mkrounding.c rsync.h - @sed '1,/^struct file_struct/d; /^}/,$$d' <$(srcdir)/rsync.h >mkrounding.h - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ -I. $(srcdir)/mkrounding.c - @rm mkrounding.h +rounding.h: rounding.c rsync.h + @for r in 0 1 3; do \ + if $(CC) $(CFLAGS) $(LDFLAGS) -o rounding -DEXTRA_ROUNDING=$$r -I. $(srcdir)/rounding.c >/dev/null 2>&1; then \ + echo "#define EXTRA_ROUNDING $$r" >rounding.h; \ + if test -f "$$HOME/build_farm/build_test.fns"; then \ + echo "EXTRA_ROUNDING is $$r" >&2; \ + fi; \ + break; \ + fi; \ + done + @rm -f rounding + @if test -f rounding.h; then : ; else \ + echo "Failed to create rounding.h!"; \ + exit 1; \ + fi tls$(EXEEXT): $(TLS_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) @@ -119,30 +127,34 @@ configure.sh config.h.in: configure.in aclocal.m4 autoconf -o configure.sh autoheader && touch config.h.in @echo 'Configure files changed -- perhaps run:' - @echo ' ./config.status --recheck; ./config.status' + @echo ' make reconfigure' @exit 1 +reconfigure: + ./config.status --recheck + ./config.status + proto: proto.h-tstamp proto.h: proto.h-tstamp @echo ' ' >/dev/null proto.h-tstamp: $(srcdir)/*.c $(srcdir)/lib/compat.c - perl mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c + perl $(srcdir)/mkproto.pl $(srcdir)/*.c $(srcdir)/lib/compat.c man: rsync.1 rsyncd.conf.5 rsync.1: rsync.yo - yodl2man -o rsync.1 rsync.yo - -./tweak_manpage rsync.1 + yodl2man -o rsync.1 $(srcdir)/rsync.yo + -$(srcdir)/tweak_manpage rsync.1 rsyncd.conf.5: rsyncd.conf.yo - yodl2man -o rsyncd.conf.5 rsyncd.conf.yo - -./tweak_manpage rsyncd.conf.5 + yodl2man -o rsyncd.conf.5 $(srcdir)/rsyncd.conf.yo + -$(srcdir)/tweak_manpage rsyncd.conf.5 clean: cleantests rm -f *~ $(OBJS) $(CHECK_PROGS) $(CHECK_OBJS) $(CHECK_SYMLINKS) \ - mkrounding mkrounding.h rounding.h + rounding rounding.h cleantests: rm -rf ./testtmp*