diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-02-19 14:33:51 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-02-19 14:33:51 -0300 |
commit | 6905ae900bc5ac4bd1374ff3c625a236b53f80dd (patch) | |
tree | 8eee3116b8671797237bf5e8e044540c539b247f /makefile | |
parent | ada82930fd9f81b7da96ea11faec9f5b79df3bca (diff) | |
download | lua-6905ae900bc5ac4bd1374ff3c625a236b53f80dd.tar.gz lua-6905ae900bc5ac4bd1374ff3c625a236b53f80dd.tar.bz2 lua-6905ae900bc5ac4bd1374ff3c625a236b53f80dd.zip |
Lua now uses "homemade" lctype (instead of ctype.h from ANSI C)
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -54,9 +54,9 @@ MYLIBS= -ldl -lreadline -lhistory -lncurses | |||
54 | LIBS = -lm | 54 | LIBS = -lm |
55 | 55 | ||
56 | CORE_T= liblua.a | 56 | CORE_T= liblua.a |
57 | CORE_O= lapi.o lcode.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o lmem.o \ | 57 | CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \ |
58 | lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o ltm.o \ | 58 | lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o \ |
59 | lundump.o lvm.o lzio.o ltests.o | 59 | ltm.o lundump.o lvm.o lzio.o ltests.o |
60 | AUX_O= lauxlib.o | 60 | AUX_O= lauxlib.o |
61 | LIB_O= lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o \ | 61 | LIB_O= lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o \ |
62 | loadlib.o linit.o | 62 | loadlib.o linit.o |
@@ -115,6 +115,7 @@ lbaselib.o: lbaselib.c lua.h luaconf.h lauxlib.h lualib.h makefile | |||
115 | lcode.o: lcode.c lua.h luaconf.h lcode.h llex.h lobject.h llimits.h \ | 115 | lcode.o: lcode.c lua.h luaconf.h lcode.h llex.h lobject.h llimits.h \ |
116 | lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h ldo.h lgc.h \ | 116 | lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h ldo.h lgc.h \ |
117 | ltable.h makefile | 117 | ltable.h makefile |
118 | lctype.o: lctype.c lctype.h lua.h luaconf.h makefile | ||
118 | ldblib.o: ldblib.c lua.h luaconf.h lauxlib.h lualib.h makefile | 119 | ldblib.o: ldblib.c lua.h luaconf.h lauxlib.h lualib.h makefile |
119 | ldebug.o: ldebug.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h \ | 120 | ldebug.o: ldebug.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h \ |
120 | ltm.h lzio.h lmem.h lcode.h llex.h lopcodes.h lparser.h ldebug.h ldo.h \ | 121 | ltm.h lzio.h lmem.h lcode.h llex.h lopcodes.h lparser.h ldebug.h ldo.h \ |
@@ -130,13 +131,13 @@ lgc.o: lgc.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h ltm.h \ | |||
130 | lzio.h lmem.h ldo.h lfunc.h lgc.h lstring.h ltable.h makefile | 131 | lzio.h lmem.h ldo.h lfunc.h lgc.h lstring.h ltable.h makefile |
131 | linit.o: linit.c lua.h luaconf.h lualib.h lauxlib.h makefile | 132 | linit.o: linit.c lua.h luaconf.h lualib.h lauxlib.h makefile |
132 | liolib.o: liolib.c lua.h luaconf.h lauxlib.h lualib.h makefile | 133 | liolib.o: liolib.c lua.h luaconf.h lauxlib.h lualib.h makefile |
133 | llex.o: llex.c lua.h luaconf.h ldo.h lobject.h llimits.h lstate.h ltm.h \ | 134 | llex.o: llex.c lua.h luaconf.h lctype.h ldo.h lobject.h llimits.h \ |
134 | lzio.h lmem.h llex.h lparser.h lstring.h lgc.h ltable.h makefile | 135 | lstate.h ltm.h lzio.h lmem.h llex.h lparser.h lstring.h lgc.h ltable.h makefile |
135 | lmathlib.o: lmathlib.c lua.h luaconf.h lauxlib.h lualib.h makefile | 136 | lmathlib.o: lmathlib.c lua.h luaconf.h lauxlib.h lualib.h makefile |
136 | lmem.o: lmem.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h \ | 137 | lmem.o: lmem.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h \ |
137 | ltm.h lzio.h lmem.h ldo.h lgc.h makefile | 138 | ltm.h lzio.h lmem.h ldo.h lgc.h makefile |
138 | loadlib.o: loadlib.c lua.h luaconf.h lauxlib.h lualib.h makefile | 139 | loadlib.o: loadlib.c lua.h luaconf.h lauxlib.h lualib.h makefile |
139 | lobject.o: lobject.c lua.h luaconf.h ldebug.h lstate.h lobject.h \ | 140 | lobject.o: lobject.c lua.h luaconf.h lctype.h ldebug.h lstate.h lobject.h \ |
140 | llimits.h ltm.h lzio.h lmem.h ldo.h lstring.h lgc.h lvm.h makefile | 141 | llimits.h ltm.h lzio.h lmem.h ldo.h lstring.h lgc.h lvm.h makefile |
141 | lopcodes.o: lopcodes.c lopcodes.h llimits.h lua.h luaconf.h makefile | 142 | lopcodes.o: lopcodes.c lopcodes.h llimits.h lua.h luaconf.h makefile |
142 | loslib.o: loslib.c lua.h luaconf.h lauxlib.h lualib.h makefile | 143 | loslib.o: loslib.c lua.h luaconf.h lauxlib.h lualib.h makefile |
@@ -154,7 +155,7 @@ ltable.o: ltable.c lua.h luaconf.h ldebug.h lstate.h lobject.h llimits.h \ | |||
154 | ltablib.o: ltablib.c lua.h luaconf.h lauxlib.h lualib.h makefile | 155 | ltablib.o: ltablib.c lua.h luaconf.h lauxlib.h lualib.h makefile |
155 | ltests.o: ltests.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h \ | 156 | ltests.o: ltests.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h \ |
156 | ltm.h lzio.h lmem.h lauxlib.h lcode.h llex.h lopcodes.h lparser.h \ | 157 | ltm.h lzio.h lmem.h lauxlib.h lcode.h llex.h lopcodes.h lparser.h \ |
157 | ldebug.h ldo.h lfunc.h lstring.h lgc.h ltable.h lualib.h makefile | 158 | lctype.h ldebug.h ldo.h lfunc.h lstring.h lgc.h ltable.h lualib.h makefile |
158 | ltm.o: ltm.c lua.h luaconf.h lobject.h llimits.h lstate.h ltm.h lzio.h \ | 159 | ltm.o: ltm.c lua.h luaconf.h lobject.h llimits.h lstate.h ltm.h lzio.h \ |
159 | lmem.h lstring.h lgc.h ltable.h makefile | 160 | lmem.h lstring.h lgc.h ltable.h makefile |
160 | lua.o: lua.c lua.h luaconf.h lauxlib.h lualib.h makefile | 161 | lua.o: lua.c lua.h luaconf.h lauxlib.h lualib.h makefile |
@@ -166,3 +167,4 @@ lzio.o: lzio.c lua.h luaconf.h llimits.h lmem.h lstate.h lobject.h ltm.h \ | |||
166 | lzio.h makefile | 167 | lzio.h makefile |
167 | 168 | ||
168 | # (end of Makefile) | 169 | # (end of Makefile) |
170 | |||