diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.28 1997/03/05 13:37:04 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.29 1997/03/17 17:01:10 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
@@ -28,7 +28,7 @@ LUAOBJS = \ | |||
28 | inout.o \ | 28 | inout.o \ |
29 | tree.o \ | 29 | tree.o \ |
30 | fallback.o \ | 30 | fallback.o \ |
31 | mem.o \ | 31 | luamem.o \ |
32 | func.o \ | 32 | func.o \ |
33 | undump.o \ | 33 | undump.o \ |
34 | auxlib.o | 34 | auxlib.o |
@@ -77,28 +77,28 @@ clear : | |||
77 | 77 | ||
78 | 78 | ||
79 | auxlib.o: auxlib.c lua.h | 79 | auxlib.o: auxlib.c lua.h |
80 | fallback.o: fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h \ | 80 | fallback.o: fallback.c luamem.h fallback.h lua.h opcode.h types.h tree.h \ |
81 | func.h table.h hash.h | 81 | func.h table.h hash.h |
82 | 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 \ |
83 | mem.h | 83 | luamem.h |
84 | hash.o: hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \ | 84 | hash.o: hash.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ |
85 | table.h | 85 | table.h |
86 | inout.o: inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h \ | 86 | inout.o: inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h \ |
87 | table.h hash.h mem.h fallback.h | 87 | table.h hash.h luamem.h fallback.h |
88 | iolib.o: iolib.c lua.h luadebug.h lualib.h | 88 | iolib.o: iolib.c lua.h luadebug.h lualib.h |
89 | lex.o: lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h lex.h \ | 89 | lex.o: lex.c luamem.h tree.h types.h table.h opcode.h lua.h func.h lex.h \ |
90 | inout.h luadebug.h parser.h | 90 | inout.h luadebug.h parser.h |
91 | lua.o: lua.c lua.h lualib.h | 91 | lua.o: lua.c lua.h lualib.h |
92 | mathlib.o: mathlib.c lualib.h lua.h | 92 | mathlib.o: mathlib.c lualib.h lua.h |
93 | mem.o: mem.c mem.h lua.h | 93 | luamem.o: luamem.c luamem.h lua.h |
94 | opcode.o: opcode.c luadebug.h lua.h mem.h opcode.h types.h tree.h \ | 94 | opcode.o: opcode.c luadebug.h lua.h luamem.h opcode.h types.h tree.h \ |
95 | func.h hash.h inout.h table.h fallback.h undump.h | 95 | func.h hash.h inout.h table.h fallback.h undump.h |
96 | parser.o: parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h \ | 96 | parser.o: parser.c luadebug.h lua.h luamem.h lex.h opcode.h types.h \ |
97 | tree.h func.h hash.h inout.h table.h | 97 | tree.h func.h hash.h inout.h table.h |
98 | strlib.o: strlib.c lua.h lualib.h | 98 | strlib.o: strlib.c lua.h lualib.h |
99 | table.o: table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \ | 99 | table.o: table.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ |
100 | table.h inout.h fallback.h luadebug.h | 100 | table.h inout.h fallback.h luadebug.h |
101 | 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 luamem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h \ |
102 | table.h fallback.h | 102 | table.h fallback.h |
103 | 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 luamem.h table.h \ |
104 | undump.h | 104 | undump.h |