More makefile fixes for coop-compiler
This commit is contained in:
parent
1910177b1d
commit
ab2ead5cbe
5
Makefile
5
Makefile
|
@ -594,7 +594,10 @@ ifeq ($(OSX_BUILD),1)
|
||||||
AS := i686-w64-mingw32-as
|
AS := i686-w64-mingw32-as
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(COMPILER),gcc)
|
ifeq ($(WINDOWS_AUTO_BUILDER),1)
|
||||||
|
CC := cc
|
||||||
|
CXX := g++
|
||||||
|
else ifeq ($(COMPILER),gcc)
|
||||||
CC := $(CROSS)gcc
|
CC := $(CROSS)gcc
|
||||||
CXX := $(CROSS)g++
|
CXX := $(CROSS)g++
|
||||||
else ifeq ($(TARGET_WEB),1) # As in, web PC port
|
else ifeq ($(TARGET_WEB),1) # As in, web PC port
|
||||||
|
|
Loading…
Reference in New Issue