diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-03-15 15:22:09 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-03-15 15:22:09 -0300 |
commit | 54ba642cc368c29d85e57fea85f963c01808e210 (patch) | |
tree | 2a8bf8db33207b42c39324336597f435e0440bed /makefile | |
parent | 8826eb7918768ab1543777ff0ff283bc1531277e (diff) | |
download | lua-54ba642cc368c29d85e57fea85f963c01808e210.tar.gz lua-54ba642cc368c29d85e57fea85f963c01808e210.tar.bz2 lua-54ba642cc368c29d85e57fea85f963c01808e210.zip |
new module "undump.o"
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.20 1996/02/13 17:30:39 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.21 1996/03/05 15:57:53 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
@@ -25,7 +25,8 @@ LUAOBJS = \ | |||
25 | tree.o \ | 25 | tree.o \ |
26 | fallback.o \ | 26 | fallback.o \ |
27 | mem.o \ | 27 | mem.o \ |
28 | func.o | 28 | func.o \ |
29 | undump.o | ||
29 | 30 | ||
30 | LIBOBJS = \ | 31 | LIBOBJS = \ |
31 | iolib.o \ | 32 | iolib.o \ |
@@ -62,25 +63,29 @@ clear : | |||
62 | rm -f parser.c parser.h y.tab.c y.tab.h | 63 | rm -f parser.c parser.h y.tab.c y.tab.h |
63 | co lua.h lualib.h luadebug.h | 64 | co lua.h lualib.h luadebug.h |
64 | 65 | ||
66 | |||
65 | % : RCS/%,v | 67 | % : RCS/%,v |
66 | co $@ | 68 | co $@ |
67 | 69 | ||
68 | 70 | ||
71 | |||
69 | fallback.o : fallback.c mem.h fallback.h opcode.h lua.h types.h tree.h func.h | 72 | fallback.o : fallback.c mem.h fallback.h opcode.h lua.h types.h tree.h func.h |
70 | func.o : func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h mem.h | 73 | func.o : func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h mem.h |
71 | hash.o : hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h | 74 | hash.o : hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h |
72 | inout.o : inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h table.h | 75 | inout.o : inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h table.h \ |
76 | mem.h | ||
73 | iolib.o : iolib.c lua.h luadebug.h lualib.h | 77 | iolib.o : iolib.c lua.h luadebug.h lualib.h |
74 | lex.o : lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h lex.h inout.h \ | 78 | lex.o : lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h lex.h inout.h \ |
75 | luadebug.h parser.h ugly.h | 79 | luadebug.h parser.h |
76 | lua.o : lua.c lua.h lualib.h | 80 | lua.o : lua.c lua.h lualib.h |
77 | mathlib.o : mathlib.c lualib.h lua.h | 81 | mathlib.o : mathlib.c lualib.h lua.h |
78 | mem.o : mem.c mem.h lua.h table.h tree.h types.h opcode.h func.h | 82 | mem.o : mem.c mem.h lua.h table.h tree.h types.h opcode.h func.h |
79 | opcode.o : opcode.c luadebug.h lua.h mem.h opcode.h types.h tree.h func.h hash.h \ | 83 | opcode.o : opcode.c luadebug.h lua.h mem.h opcode.h types.h tree.h func.h hash.h \ |
80 | inout.h table.h fallback.h | 84 | inout.h table.h fallback.h undump.h |
81 | parser.o : parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h tree.h func.h \ | 85 | parser.o : parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h tree.h func.h \ |
82 | hash.h inout.h table.h | 86 | hash.h inout.h table.h |
83 | strlib.o : strlib.c lua.h lualib.h | 87 | strlib.o : strlib.c lua.h lualib.h |
84 | table.o : table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h \ | 88 | table.o : table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h \ |
85 | inout.h fallback.h luadebug.h | 89 | inout.h fallback.h luadebug.h |
86 | tree.o : tree.c mem.h lua.h tree.h types.h hash.h opcode.h func.h table.h | 90 | tree.o : tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h table.h |
91 | undump.o : undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h undump.h | ||