summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2009-03-30 16:28:07 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2009-03-30 16:28:07 +0000
commit6656ac59842bcab0f656c077f52e0dffdacfdd0c (patch)
treea6f852207a184aa929956b4434d8a094a898a11c
parentb2304232670b3a4e0c37fc57b9566541c9e231ab (diff)
downloadnetsurf-6656ac59842bcab0f656c077f52e0dffdacfdd0c.tar.gz
netsurf-6656ac59842bcab0f656c077f52e0dffdacfdd0c.tar.bz2
Missed a fix for C++ files, .d end up being object files...
svn path=/trunk/netsurf/; revision=6999
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 839536b09..24cdaff16 100644
--- a/Makefile
+++ b/Makefile
@@ -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