diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-09-24 03:28:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:49 -0500 |
commit | 36cfc9c4acb17ac2a380a36c55cb444eff891db6 (patch) | |
tree | 587945a7bd8907da160551da31d6e805c856f313 | |
parent | 5540712156872cc55ea7502d836553a59a812033 (diff) | |
download | samba-36cfc9c4acb17ac2a380a36c55cb444eff891db6.tar.gz samba-36cfc9c4acb17ac2a380a36c55cb444eff891db6.tar.bz2 samba-36cfc9c4acb17ac2a380a36c55cb444eff891db6.zip |
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)
-rw-r--r-- | source4/lib/tdb/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
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) |