aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Kunze <kunze.jonas@gmail.com>2016-04-12 13:06:47 +0200
committerJonas Kunze <kunze.jonas@gmail.com>2016-04-12 13:06:47 +0200
commit624924a77b5ea905c6bdb7607f0fae50ce58c5f7 (patch)
tree380b356d67f8395aeda4e32b7043ee73b720639e
parent23ce5aeaa22b49d6649096b520b292a3626474ef (diff)
downloadluasocket-624924a77b5ea905c6bdb7607f0fae50ce58c5f7.tar.gz
luasocket-624924a77b5ea905c6bdb7607f0fae50ce58c5f7.tar.bz2
luasocket-624924a77b5ea905c6bdb7607f0fae50ce58c5f7.zip
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