From 36cfc9c4acb17ac2a380a36c55cb444eff891db6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 24 Sep 2005 03:28:10 +0000 Subject: r10462: cope better with compilers that don't put the object file in the same directory as the source (This used to be commit 312491b2511039f3d6308e70c849810c35a3259c) --- source4/lib/tdb/Makefile.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/lib') diff --git a/source4/lib/tdb/Makefile.in b/source4/lib/tdb/Makefile.in index 1942d9050a..8b64315a83 100644 --- a/source4/lib/tdb/Makefile.in +++ b/source4/lib/tdb/Makefile.in @@ -17,6 +17,10 @@ TDB_OBJ = common/tdb.o common/dump.o common/io.o common/lock.o \ all: $(PROGS) +.c.o: + @echo Compiling $*.c + @$(CC) $(CFLAGS) -c $< -o $@ + install: all mkdir -p $(bindir) mkdir -p $(includedir) -- cgit