diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-03-17 14:02:29 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-03-17 14:02:29 -0300 |
commit | eea734aa881002e90bd9130171a2b94cd9dc3267 (patch) | |
tree | b2816a614fca723d8c0b06e96cd093438e6e098b /makefile | |
parent | b6d91e24e23edfe98ad732660fd456e91658edb9 (diff) | |
download | lua-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-- | makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 | ||
35 | LIBOBJS = \ | 36 | LIBOBJS = \ |
36 | iolib.o \ | 37 | iolib.o \ |
@@ -75,6 +76,7 @@ clear : | |||
75 | co $@ | 76 | co $@ |
76 | 77 | ||
77 | 78 | ||
79 | auxlib.o: auxlib.c lua.h | ||
78 | fallback.o: fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h \ | 80 | fallback.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 |
80 | func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ | 82 | func.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 | |||
97 | table.o: table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \ | 99 | table.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 |
99 | tree.o: tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h \ | 101 | tree.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 |
101 | undump.o: undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h \ | 103 | undump.o: undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h \ |
102 | undump.h | 104 | undump.h |