Merge pull request #77 from kekstee/master

Make CC and LD configurable
This commit is contained in:
Bruno Silvestre 2017-03-31 15:11:17 -03:00 committed by GitHub
commit 5299803bef

View File

@ -21,8 +21,8 @@ MAC_CFLAGS=-O2 -fno-common $(WARN) $(INCDIR) $(DEFS)
MAC_LDFLAGS=-bundle -undefined dynamic_lookup $(LIBDIR)
INSTALL = install
CC = cc
LD = $(MYENV) cc
CC ?= cc
LD ?= $(MYENV) cc
CFLAGS += $(MYCFLAGS)
LDFLAGS += $(MYLDFLAGS)