aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-05 10:37:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-03-05 10:37:04 -0300
commitc3c0b52a1f1318c3b1131d260100ad9d999db5d5 (patch)
tree30a9e0bbae0f227a01826936d708f7baa400f4a9
parentec422ec7d0f0af2bac368fe99b92d5ad7b381184 (diff)
downloadlua-c3c0b52a1f1318c3b1131d260100ad9d999db5d5.tar.gz
lua-c3c0b52a1f1318c3b1131d260100ad9d999db5d5.tar.bz2
lua-c3c0b52a1f1318c3b1131d260100ad9d999db5d5.zip
atualization of #include dependencies.
-rw-r--r--makefile48
1 files changed, 26 insertions, 22 deletions
diff --git a/makefile b/makefile
index cb0b523b..2f65498e 100644
--- a/makefile
+++ b/makefile
@@ -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
78fallback.o : fallback.c mem.h fallback.h lua.h opcode.h types.h tree.h func.h \ 78fallback.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
80func.o : func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h mem.h 80func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \
81hash.o : hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h table.h 81 mem.h
82inout.o : inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h table.h \ 82hash.o: hash.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \
83 mem.h 83 table.h
84iolib.o : iolib.c lua.h luadebug.h lualib.h 84inout.o: inout.c lex.h opcode.h lua.h types.h tree.h func.h inout.h \
85lex.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 86iolib.o: iolib.c lua.h luadebug.h lualib.h
87lua.o : lua.c lua.h lualib.h 87lex.o: lex.c mem.h tree.h types.h table.h opcode.h lua.h func.h lex.h \
88mathlib.o : mathlib.c lualib.h lua.h 88 inout.h luadebug.h parser.h
89mem.o : mem.c mem.h lua.h 89lua.o: lua.c lua.h lualib.h
90opcode.o : opcode.c luadebug.h lua.h mem.h opcode.h types.h tree.h func.h hash.h \ 90mathlib.o: mathlib.c lualib.h lua.h
91 inout.h table.h fallback.h undump.h 91mem.o: mem.c mem.h lua.h
92parser.o : parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h tree.h func.h \ 92opcode.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
94strlib.o : strlib.c lua.h lualib.h 94parser.o: parser.c luadebug.h lua.h mem.h lex.h opcode.h types.h \
95table.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 96strlib.o: strlib.c lua.h lualib.h
97tree.o : tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h table.h 97table.o: table.c mem.h opcode.h lua.h types.h tree.h func.h hash.h \
98undump.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
99tree.o: tree.c mem.h lua.h tree.h types.h lex.h hash.h opcode.h func.h \
100 table.h
101undump.o: undump.c opcode.h lua.h types.h tree.h func.h mem.h table.h \
102 undump.h