diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-18 10:24:01 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-06-18 10:24:01 -0300 |
commit | eb678282368c8b31289e999da777a4d79abcfdfe (patch) | |
tree | ebbe4ac993d89d9a6b2ae9121d4eb80b35de57b5 /makefile | |
parent | 94266dfdbd25b43fb84e6dc7752cdb069f0335e9 (diff) | |
download | lua-eb678282368c8b31289e999da777a4d79abcfdfe.tar.gz lua-eb678282368c8b31289e999da777a4d79abcfdfe.tar.bz2 lua-eb678282368c8b31289e999da777a4d79abcfdfe.zip |
changed macro for compatibility options + details
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -43,13 +43,13 @@ CWARNS= $(CWARNSCPP) $(CWARNSC) | |||
43 | # -DLUA_USE_CTYPE -DLUA_USE_APICHECK | 43 | # -DLUA_USE_CTYPE -DLUA_USE_APICHECK |
44 | TESTS= -DLUA_USER_H='"ltests.h"' | 44 | TESTS= -DLUA_USER_H='"ltests.h"' |
45 | 45 | ||
46 | # -mtune=native -fomit-frame-pointer | 46 | # -mtune=native -fomit-frame-pointer |
47 | LOCAL = $(TESTS) $(CWARNS) -g | 47 | LOCAL = $(TESTS) $(CWARNS) -g |
48 | 48 | ||
49 | 49 | ||
50 | 50 | ||
51 | # enable Linux goodies | 51 | # enable Linux goodies |
52 | MYCFLAGS= $(LOCAL) -DLUA_USE_LINUX -DLUA_COMPAT_ALL | 52 | MYCFLAGS= $(LOCAL) -DLUA_USE_LINUX -DLUA_COMPAT_5_2 |
53 | MYLDFLAGS= $(LOCAL) -Wl,-E | 53 | MYLDFLAGS= $(LOCAL) -Wl,-E |
54 | MYLIBS= -ldl -lreadline -lhistory -lncurses | 54 | MYLIBS= -ldl -lreadline -lhistory -lncurses |
55 | 55 | ||
@@ -123,8 +123,8 @@ echo: | |||
123 | 123 | ||
124 | $(ALL_O): makefile | 124 | $(ALL_O): makefile |
125 | 125 | ||
126 | # DO NOT DELETE | 126 | # DO NOT EDIT |
127 | # automatically made with 'gcc -MM' | 127 | # automatically made with 'gcc -MM l*.c' |
128 | 128 | ||
129 | lapi.o: lapi.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h ltm.h \ | 129 | lapi.o: lapi.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h ltm.h \ |
130 | lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h lstring.h ltable.h lundump.h \ | 130 | lzio.h lmem.h ldebug.h ldo.h lfunc.h lgc.h lstring.h ltable.h lundump.h \ |
@@ -182,7 +182,7 @@ ltm.o: ltm.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h ltm.h \ | |||
182 | lua.o: lua.c lua.h luaconf.h lauxlib.h lualib.h | 182 | lua.o: lua.c lua.h luaconf.h lauxlib.h lualib.h |
183 | lundump.o: lundump.c lua.h luaconf.h ldebug.h lstate.h lobject.h \ | 183 | lundump.o: lundump.c lua.h luaconf.h ldebug.h lstate.h lobject.h \ |
184 | llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lstring.h lgc.h lundump.h | 184 | llimits.h ltm.h lzio.h lmem.h ldo.h lfunc.h lstring.h lgc.h lundump.h |
185 | lutf8lib.o: lutf8lib.c lua.h luaconf.h lauxlib.h | 185 | lutf8lib.o: lutf8lib.c lua.h luaconf.h lauxlib.h lualib.h |
186 | lvm.o: lvm.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h ltm.h \ | 186 | lvm.o: lvm.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h ltm.h \ |
187 | lzio.h lmem.h ldo.h lfunc.h lgc.h lopcodes.h lstring.h ltable.h lvm.h | 187 | lzio.h lmem.h ldo.h lfunc.h lgc.h lopcodes.h lstring.h ltable.h lvm.h |
188 | lzio.o: lzio.c lua.h luaconf.h llimits.h lmem.h lstate.h lobject.h ltm.h \ | 188 | lzio.o: lzio.c lua.h luaconf.h llimits.h lmem.h lstate.h lobject.h ltm.h \ |