X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/77ba4cc2f97eb1496569cc1ff79fed5ed1296d40..935b92012021dfa722ffdd924659784b646d575b:/Makefile.in diff --git a/Makefile.in b/Makefile.in index f61468eb..dad43dbd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -62,8 +62,11 @@ install-strip: $(MAKE) INSTALLCMD='$(INSTALLCMD) -s' install rsync: $(OBJS) + @echo "Please ignore warnings below about mktemp -- it is used in a safe way" $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) +$(OBJS): config.h + tls: $(tls_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(tls_OBJ) $(LIBS) @@ -119,13 +122,13 @@ test: check # might lose in the future where POSIX diverges from old sh. check: all $(CHECK_PROGS) - POSIXLY_CORRECT=1 rsync_bin=`pwd`/rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh + POSIXLY_CORRECT=1 TLS=`pwd`/tls rsync_bin=`pwd`/rsync srcdir="$(srcdir)" $(srcdir)/runtests.sh # This does *not* depend on building or installing: you can use it to # check a version installed from a binary or some other source tree, # if you want. installcheck: $(CHECK_PROGS) - POSIXLY_CORRECT=1 rsync_bin="$(bindir)/rsync" srcdir="$(srcdir)" $(srcdir)/runtests.sh + 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