diff options
author | Jonas Kunze <kunze.jonas@gmail.com> | 2016-04-12 13:06:47 +0200 |
---|---|---|
committer | Jonas Kunze <kunze.jonas@gmail.com> | 2016-04-12 13:06:47 +0200 |
commit | 624924a77b5ea905c6bdb7607f0fae50ce58c5f7 (patch) | |
tree | 380b356d67f8395aeda4e32b7043ee73b720639e | |
parent | 23ce5aeaa22b49d6649096b520b292a3626474ef (diff) | |
download | luasocket-624924a77b5ea905c6bdb7607f0fae50ce58c5f7.tar.gz luasocket-624924a77b5ea905c6bdb7607f0fae50ce58c5f7.tar.bz2 luasocket-624924a77b5ea905c6bdb7607f0fae50ce58c5f7.zip |
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 |