summaryrefslogtreecommitdiff
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-github-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.tar.gz
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 \
ltm.o lundump.o lvm.o lzio.o ltests.o
AUX_O= lauxlib.o
LIB_O= lbaselib.o ldblib.o liolib.o lmathlib.o loslib.o ltablib.o lstrlib.o \
- loadlib.o linit.o
+ lbitlib.o loadlib.o linit.o
LUA_T= lua
LUA_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 \
lvm.h makefile
lauxlib.o: lauxlib.c lua.h luaconf.h lauxlib.h makefile
lbaselib.o: lbaselib.c lua.h luaconf.h lauxlib.h lualib.h makefile
+lbitlib.o: lbitlib.c lua.h luaconf.h lauxlib.h lualib.h makefile
lcode.o: lcode.c lua.h luaconf.h lcode.h llex.h lobject.h llimits.h \
lzio.h lmem.h lopcodes.h lparser.h ldebug.h lstate.h ltm.h ldo.h lgc.h \
ltable.h makefile