diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-03-05 10:37:04 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-03-05 10:37:04 -0300 |
commit | c3c0b52a1f1318c3b1131d260100ad9d999db5d5 (patch) | |
tree | 30a9e0bbae0f227a01826936d708f7baa400f4a9 | |
parent | ec422ec7d0f0af2bac368fe99b92d5ad7b381184 (diff) | |
download | lua-c3c0b52a1f1318c3b1131d260100ad9d999db5d5.tar.gz lua-c3c0b52a1f1318c3b1131d260100ad9d999db5d5.tar.bz2 lua-c3c0b52a1f1318c3b1131d260100ad9d999db5d5.zip |
atualization of #include dependencies.
-rw-r--r-- | makefile | 48 |
1 files changed, 26 insertions, 22 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.27 1996/08/28 20:45:48 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.27 1996/11/06 20:48:03 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
@@ -75,24 +75,28 @@ clear : | |||
75 | co $@ | 75 | co $@ |
76 | 76 | ||
77 | 77 | ||
78 | fallback.o : fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h func.h \ | 78 | fallback.o: fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h \ |
79 | table.h | 79 | 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 mem.h | 80 | func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ |
81 | hash.o : hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h | 81 | mem.h |
82 | inout.o : inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h table.h \ | 82 | hash.o: hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \ |
83 | mem.h | 83 | table.h |
84 | iolib.o : iolib.c lua.h luadebug.h lualib.h | 84 | inout.o: inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h \ |
85 | lex.o : lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h lex.h inout.h \ | 85 | table.h hash.h mem.h fallback.h |
86 | luadebug.h parser.h | 86 | iolib.o: iolib.c lua.h luadebug.h lualib.h |
87 | lua.o : lua.c lua.h lualib.h | 87 | lex.o: lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h lex.h \ |
88 | mathlib.o : mathlib.c lualib.h lua.h | 88 | inout.h luadebug.h parser.h |
89 | mem.o : mem.c mem.h lua.h | 89 | lua.o: lua.c lua.h lualib.h |
90 | opcode.o : opcode.c luadebug.h lua.h mem.h opcode.h types.h tree.h func.h hash.h \ | 90 | mathlib.o: mathlib.c lualib.h lua.h |
91 | inout.h table.h fallback.h undump.h | 91 | mem.o: mem.c mem.h lua.h |
92 | parser.o : parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h tree.h func.h \ | 92 | opcode.o: opcode.c luadebug.h lua.h mem.h opcode.h types.h tree.h \ |
93 | hash.h inout.h table.h | 93 | func.h hash.h inout.h table.h fallback.h undump.h |
94 | strlib.o : strlib.c lua.h lualib.h | 94 | parser.o: parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h \ |
95 | table.o : table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h \ | 95 | tree.h func.h hash.h inout.h table.h |
96 | inout.h fallback.h luadebug.h | 96 | strlib.o: strlib.c lua.h lualib.h |
97 | tree.o : tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h table.h | 97 | table.o: table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \ |
98 | undump.o : undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h undump.h | 98 | 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 \ | ||
100 | table.h | ||
101 | undump.o: undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h \ | ||
102 | undump.h | ||