svn commit: samba r10462 - in branches/SAMBA_4_0/source/lib/tdb: .

tridge at samba.org tridge at samba.org
Sat Sep 24 03:28:10 GMT 2005


Author: tridge
Date: 2005-09-24 03:28:10 +0000 (Sat, 24 Sep 2005)
New Revision: 10462

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=10462

Log:
cope better with compilers that don't put the object file in the same directory
as the source



Modified:
   branches/SAMBA_4_0/source/lib/tdb/Makefile.in


Changeset:
Modified: branches/SAMBA_4_0/source/lib/tdb/Makefile.in
===================================================================
--- branches/SAMBA_4_0/source/lib/tdb/Makefile.in	2005-09-24 02:39:09 UTC (rev 10461)
+++ branches/SAMBA_4_0/source/lib/tdb/Makefile.in	2005-09-24 03:28:10 UTC (rev 10462)
@@ -17,6 +17,10 @@
 
 all: $(PROGS)
 
+.c.o:
+	@echo Compiling $*.c
+	@$(CC) $(CFLAGS) -c $< -o $@
+
 install: all
 	mkdir -p $(bindir)
 	mkdir -p $(includedir)



More information about the samba-cvs mailing list