diff options
author | Diego Nehab <diego.nehab@gmail.com> | 2016-04-12 09:29:14 -0300 |
---|---|---|
committer | Diego Nehab <diego.nehab@gmail.com> | 2016-04-12 09:29:14 -0300 |
commit | e2acf378ea4140dc910bbb5329fa4a603e571c39 (patch) | |
tree | 2ea72d81a52c4905eed33715b40ceb879d3a7fe7 | |
parent | 6a0506ca44f4939764aecf8091765a7d772975f5 (diff) | |
parent | 624924a77b5ea905c6bdb7607f0fae50ce58c5f7 (diff) | |
download | luasocket-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/makefile | 6 |
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 | |||
21 | LUAV?=5.1 | 21 | LUAV?=5.1 |
22 | 22 | ||
23 | # MYCFLAGS: to be set by user if needed | 23 | # MYCFLAGS: to be set by user if needed |
24 | MYCFLAGS= | 24 | MYCFLAGS?= |
25 | 25 | ||
26 | # MYLDFLAGS: to be set by user if needed | 26 | # MYLDFLAGS: to be set by user if needed |
27 | MYLDFLAGS= | 27 | MYLDFLAGS?= |
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 |