Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Diego Nehab
b06176823d Allow CC and LD to be overrriden 2020-04-14 16:55:02 -03:00

View file

@ -283,11 +283,11 @@ SOCKET=$(SOCKET_$(PLAT))
#------
# Settings selected for platform
#
CC=$(CC_$(PLAT))
CC?=$(CC_$(PLAT))
DEF=$(DEF_$(PLAT))
CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT))
LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT))
LD=$(LD_$(PLAT))
LD?=$(LD_$(PLAT))
LUAINC= $(LUAINC_$(PLAT))
LUALIB= $(LUALIB_$(PLAT))