X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/d7bf70f1965012eb578a28087fee1c309dea19e4..9935066b704bcf2e6e48dac85cb1b4047d8f439d:/Makefile.in diff --git a/Makefile.in b/Makefile.in index edf4f140..03c7983c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,8 +26,8 @@ VERSION=@VERSION@ .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@ +LIBOBJ=lib/wildmatch.o lib/compat.o lib/snprintf.o lib/mdfour.o \ + lib/permstring.o lib/pool_alloc.o @LIBOBJS@ ZLIBOBJ=zlib/deflate.o zlib/infblock.o zlib/infcodes.o zlib/inffast.o \ zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/trees.o \ zlib/zutil.o zlib/adler32.o @@ -159,9 +159,9 @@ 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) +wildtest.o: wildtest.c lib/wildmatch.c rsync.h +wildtest$(EXEEXT): wildtest.o + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ wildtest.o @BUILD_POPT@ $(LIBS) # 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,