aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-07-01 13:16:40 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2009-07-01 13:16:40 -0300
commit3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee (patch)
tree472484d4d48fef9c7ecc143d1eb88f608a93ad4a /makefile
parenteb8499c8e03b96071b40b6659f72391f1c6a2a12 (diff)
downloadlua-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.tar.gz
lua-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.tar.bz2
lua-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.zip
new module 'lbitlib.c' for bitwise operations
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index d4c09543..0d5a42b9 100644
--- a/makefile
+++ b/makefile
@@ -59,7 +59,7 @@ CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \
59 ltm.o lundump.o lvm.o lzio.o ltests.o 59 ltm.o lundump.o lvm.o lzio.o ltests.o
60AUX_O= lauxlib.o 60AUX_O= lauxlib.o
61LIB_O= lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o \ 61LIB_O= lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o \
62 loadlib.o linit.o 62 lbitlib.o loadlib.o linit.o
63 63
64LUA_T= lua 64LUA_T= lua
65LUA_O= lua.o 65LUA_O= lua.o
@@ -112,6 +112,7 @@ lapi.o: lapi.c lua.h luaconf.h lapi.h llimits.h lstate.h lobject.h ltm.h \
112 lvm.h makefile 112 lvm.h makefile
113lauxlib.o: lauxlib.c lua.h luaconf.h lauxlib.h makefile 113lauxlib.o: lauxlib.c lua.h luaconf.h lauxlib.h makefile
114lbaselib.o: lbaselib.c lua.h luaconf.h lauxlib.h lualib.h makefile 114lbaselib.o: lbaselib.c lua.h luaconf.h lauxlib.h lualib.h makefile
115lbitlib.o: lbitlib.c lua.h luaconf.h lauxlib.h lualib.h makefile
115lcode.o: lcode.c lua.h luaconf.h lcode.h llex.h lobject.h llimits.h \ 116lcode.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 \ 117 lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h ldo.h lgc.h \
117 ltable.h makefile 118 ltable.h makefile