mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 17:23:09 +03:00
Fix the fix... $(CC) will work better for C files...
svn path=/trunk/netsurf/; revision=6814
This commit is contained in:
parent
be485d795e
commit
3a0b151b5b
2
Makefile
2
Makefile
@ -758,7 +758,7 @@ ifeq ($(GCCVER),2)
|
|||||||
define compile_target_c
|
define compile_target_c
|
||||||
$$(OBJROOT)/$(2): $$(OBJROOT)/created $$(DEPROOT)/$(3)
|
$$(OBJROOT)/$(2): $$(OBJROOT)/created $$(DEPROOT)/$(3)
|
||||||
$$(VQ)echo " COMPILE: $(1)"
|
$$(VQ)echo " COMPILE: $(1)"
|
||||||
$$(Q)$$(CXX) $$(CFLAGS) -o $$@ -c $(1)
|
$$(Q)$$(CC) $$(CFLAGS) -o $$@ -c $(1)
|
||||||
|
|
||||||
endef
|
endef
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user