X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ec6e0bf0c0339004044b43292986577e64f0d4f2..d7bf70f1965012eb578a28087fee1c309dea19e4:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 6561ec51..edf4f140 100644 --- a/Makefile.in +++ b/Makefile.in @@ -25,6 +25,7 @@ VERSION=@VERSION@ .SUFFIXES: .SUFFIXES: .c .o +HEADERS=byteorder.h config.h errcode.h proto.h rsync.h LIBOBJ=lib/fnmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \ lib/permstring.o @LIBOBJS@ ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \ @@ -44,10 +45,10 @@ TLS_OBJ = tls.o syscall.o lib/permstring.o # Programs we must have to run the test cases CHECK_PROGS = rsync$(EXEEXT) tls$(EXEEXT) getgroups$(EXEEXT) \ - trimslash$(EXEEXT) t_unsafe$(EXEEXT) + trimslash$(EXEEXT) t_unsafe$(EXEEXT) wildtest$(EXEEXT) # Objects for CHECK_PROGS to clean -CHECK_OBJS=getgroups.o t_stub.o t_unsafe.o trimslash.o +CHECK_OBJS=getgroups.o t_stub.o t_unsafe.o trimslash.o wildtest.o # note that the -I. is needed to handle config.h when using VPATH .c.o: @@ -73,7 +74,7 @@ install-strip: rsync$(EXEEXT): $(OBJS) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) -$(OBJS): config.h +$(OBJS): $(HEADERS) tls$(EXEEXT): $(TLS_OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(TLS_OBJ) $(LIBS) @@ -158,6 +159,10 @@ test: check check: all $(CHECK_PROGS) POSIXLY_CORRECT=1 TOOLDIR=`pwd` rsync_bin=`pwd`/rsync$(EXEEXT) srcdir="$(srcdir)" $(srcdir)/runtests.sh +WILDTEST_OBJ = wildtest.o lib/wildmatch.o +wildtest$(EXEEXT): $(WILDTEST_OBJ) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(WILDTEST_OBJ) + # 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.