Merge pull request #171 from JonasKunze/feature/overwriteFlags

Enabled overwriting of MYCF/MYLDFlAGS
master
Diego Nehab 2016-04-12 09:29:14 -03:00
commit e2acf378ea
1 changed files with 4 additions and 2 deletions

View File

@ -21,10 +21,10 @@ PLAT?=linux
LUAV?=5.1 LUAV?=5.1
# MYCFLAGS: to be set by user if needed # MYCFLAGS: to be set by user if needed
MYCFLAGS= MYCFLAGS?=
# MYLDFLAGS: to be set by user if needed # MYLDFLAGS: to be set by user if needed
MYLDFLAGS= MYLDFLAGS?=
# DEBUG: NODEBUG DEBUG # DEBUG: NODEBUG DEBUG
# debug mode causes luasocket to collect and returns timing information useful # debug mode causes luasocket to collect and returns timing information useful
@ -135,6 +135,8 @@ print:
@echo LUALIB_$(PLAT)=$(LUALIB_$(PLAT)) @echo LUALIB_$(PLAT)=$(LUALIB_$(PLAT))
@echo INSTALL_TOP_CDIR=$(INSTALL_TOP_CDIR) @echo INSTALL_TOP_CDIR=$(INSTALL_TOP_CDIR)
@echo INSTALL_TOP_LDIR=$(INSTALL_TOP_LDIR) @echo INSTALL_TOP_LDIR=$(INSTALL_TOP_LDIR)
@echo CFLAGS=$(CFLAGS)
@echo LDFLAGS=$(LDFLAGS)
#------ #------
# Supported platforms # Supported platforms