aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-17 14:02:29 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-17 14:02:29 -0300
commiteea734aa881002e90bd9130171a2b94cd9dc3267 (patch)
treeb2816a614fca723d8c0b06e96cd093438e6e098b /makefile
parentb6d91e24e23edfe98ad732660fd456e91658edb9 (diff)
downloadlua-eea734aa881002e90bd9130171a2b94cd9dc3267.tar.gz
lua-eea734aa881002e90bd9130171a2b94cd9dc3267.tar.bz2
lua-eea734aa881002e90bd9130171a2b94cd9dc3267.zip
new module 'auxlib' centralizes functions to get/check parameters.
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/makefile b/makefile
index 2f65498e..8e23fcdd 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
1# $Id: makefile,v 1.27 1996/11/06 20:48:03 roberto Exp roberto $ 1# $Id: makefile,v 1.28 1997/03/05 13:37:04 roberto Exp roberto $
2 2
3#configuration 3#configuration
4 4
@@ -30,7 +30,8 @@ LUAOBJS = \
30 fallback.o \ 30 fallback.o \
31 mem.o \ 31 mem.o \
32 func.o \ 32 func.o \
33 undump.o 33 undump.o \
34 auxlib.o
34 35
35LIBOBJS = \ 36LIBOBJS = \
36 iolib.o \ 37 iolib.o \
@@ -75,6 +76,7 @@ clear :
75 co $@ 76 co $@
76 77
77 78
79auxlib.o: auxlib.c lua.h
78fallback.o: fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h \ 80fallback.o: fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h \
79 func.h table.h hash.h 81 func.h table.h hash.h
80func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ 82func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \
@@ -97,6 +99,6 @@ strlib.o: strlib.c lua.h lualib.h
97table.o: table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \ 99table.o: table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \
98 table.h inout.h fallback.h luadebug.h 100 table.h inout.h fallback.h luadebug.h
99tree.o: tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h \ 101tree.o: tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h \
100 table.h 102 table.h fallback.h
101undump.o: undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h \ 103undump.o: undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h \
102 undump.h 104 undump.h