changes to make VPATH work correctly, thanks to patl@cag.lcs.mit.edu
authorAndrew Tridgell <tridge@samba.org>
Wed, 25 Mar 1998 04:14:18 +0000 (04:14 +0000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 25 Mar 1998 04:14:18 +0000 (04:14 +0000)
Makefile.in
configure.in

index f634863cb42f3cff0b6dddd806ad5081836f9b39..d01848708260cc1e38c6e2799cecbbbaf23836e2 100644 (file)
@@ -24,8 +24,9 @@ LIBOBJ=lib/getopt.o lib/fnmatch.o lib/zlib.o lib/compat.o
 OBJS1=rsync.o exclude.o util.o md4.o main.o checksum.o match.o syscall.o
 OBJS=$(OBJS1) flist.o io.o compat.o hlink.o token.o uidlist.o $(LIBOBJ)
 
+# note that the -I. is needed to handle config.h when using VPATH
 .c.o:
-       $(CC) -I$(srcdir) $(CFLAGS) -c $*.c -o $*.o
+       $(CC) -I. -I$(srcdir) $(CFLAGS) -c $< -o $@
 
 all: rsync
 
index bd6384c21002f272bb774fde5099c8fa853c5890..412d2cd93e3a485826b382085bb56a11d1955eea 100644 (file)
@@ -67,4 +67,4 @@ AC_TRY_COMPILE([#include <sys/types.h>
 echo yes;AC_DEFINE(HAVE_UTIMBUF), 
 echo no)
 
-AC_OUTPUT(Makefile)
+AC_OUTPUT(Makefile lib/dummy)