aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Nehab <diego.nehab@gmail.com>2016-04-12 09:29:14 -0300
committerDiego Nehab <diego.nehab@gmail.com>2016-04-12 09:29:14 -0300
commite2acf378ea4140dc910bbb5329fa4a603e571c39 (patch)
tree2ea72d81a52c4905eed33715b40ceb879d3a7fe7
parent6a0506ca44f4939764aecf8091765a7d772975f5 (diff)
parent624924a77b5ea905c6bdb7607f0fae50ce58c5f7 (diff)
downloadluasocket-e2acf378ea4140dc910bbb5329fa4a603e571c39.tar.gz
luasocket-e2acf378ea4140dc910bbb5329fa4a603e571c39.tar.bz2
luasocket-e2acf378ea4140dc910bbb5329fa4a603e571c39.zip
Merge pull request #171 from JonasKunze/feature/overwriteFlags
Enabled overwriting of MYCF/MYLDFlAGS
-rw-r--r--src/makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/makefile b/src/makefile
index adf687f..2e00950 100644
--- a/src/makefile
+++ b/src/makefile
@@ -21,10 +21,10 @@ PLAT?=linux
21LUAV?=5.1 21LUAV?=5.1
22 22
23# MYCFLAGS: to be set by user if needed 23# MYCFLAGS: to be set by user if needed
24MYCFLAGS= 24MYCFLAGS?=
25 25
26# MYLDFLAGS: to be set by user if needed 26# MYLDFLAGS: to be set by user if needed
27MYLDFLAGS= 27MYLDFLAGS?=
28 28
29# DEBUG: NODEBUG DEBUG 29# DEBUG: NODEBUG DEBUG
30# debug mode causes luasocket to collect and returns timing information useful 30# debug mode causes luasocket to collect and returns timing information useful
@@ -135,6 +135,8 @@ print:
135 @echo LUALIB_$(PLAT)=$(LUALIB_$(PLAT)) 135 @echo LUALIB_$(PLAT)=$(LUALIB_$(PLAT))
136 @echo INSTALL_TOP_CDIR=$(INSTALL_TOP_CDIR) 136 @echo INSTALL_TOP_CDIR=$(INSTALL_TOP_CDIR)
137 @echo INSTALL_TOP_LDIR=$(INSTALL_TOP_LDIR) 137 @echo INSTALL_TOP_LDIR=$(INSTALL_TOP_LDIR)
138 @echo CFLAGS=$(CFLAGS)
139 @echo LDFLAGS=$(LDFLAGS)
138 140
139#------ 141#------
140# Supported platforms 142# Supported platforms