Fix the fix... $(CC) will work better for C files...

svn path=/trunk/netsurf/; revision=6814
This commit is contained in:
François Revel 2009-03-21 23:22:59 +00:00
parent be485d795e
commit 3a0b151b5b

View File

@ -758,7 +758,7 @@ ifeq ($(GCCVER),2)
define compile_target_c
$$(OBJROOT)/$(2): $$(OBJROOT)/created $$(DEPROOT)/$(3)
$$(VQ)echo " COMPILE: $(1)"
$$(Q)$$(CXX) $$(CFLAGS) -o $$@ -c $(1)
$$(Q)$$(CC) $$(CFLAGS) -o $$@ -c $(1)
endef
else