Missed a fix for C++ files, .d end up being object files...

svn path=/trunk/netsurf/; revision=6999
This commit is contained in:
François Revel 2009-03-30 16:28:07 +00:00
parent b230423267
commit 6656ac5984
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ $$(DEPROOT)/$(3) $$(OBJROOT)/$(2): $$(OBJROOT)/created
$(1) | sed 's,^.*:,$$(DEPROOT)/$(3) $$(OBJROOT)/$(2):,' \
> $$(DEPROOT)/$(3)
$$(VQ)echo " COMPILE: $(1)"
$$(Q)$$(CXX) $$(CFLAGS) -o $$@ -c $(1)
$$(Q)$$(CXX) $$(CFLAGS) -o $$(OBJROOT)/$(2) -c $(1)
endef