diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-06-16 13:50:22 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-06-16 13:50:22 -0300 |
commit | c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197 (patch) | |
tree | 6f099e983ecb968f625a8824ac2ca78e625882e3 /makefile | |
parent | 9fe5be3acf340b90fe0c24d36a601adaf6f21c79 (diff) | |
download | lua-c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197.tar.gz lua-c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197.tar.bz2 lua-c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197.zip |
using "zio" for parsing Lua code.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 34 |
1 files changed, 19 insertions, 15 deletions
@@ -1,4 +1,4 @@ | |||
1 | # $Id: makefile,v 1.33 1997/04/06 14:08:08 roberto Exp roberto $ | 1 | # $Id: makefile,v 1.34 1997/06/11 18:57:00 roberto Exp roberto $ |
2 | 2 | ||
3 | #configuration | 3 | #configuration |
4 | 4 | ||
@@ -32,7 +32,8 @@ LUAOBJS = \ | |||
32 | luamem.o \ | 32 | luamem.o \ |
33 | func.o \ | 33 | func.o \ |
34 | undump.o \ | 34 | undump.o \ |
35 | auxlib.o | 35 | auxlib.o \ |
36 | zio.o | ||
36 | 37 | ||
37 | LIBOBJS = \ | 38 | LIBOBJS = \ |
38 | iolib.o \ | 39 | iolib.o \ |
@@ -77,29 +78,32 @@ clear : | |||
77 | co $@ | 78 | co $@ |
78 | 79 | ||
79 | 80 | ||
80 | auxlib.o: auxlib.c lua.h auxlib.h | 81 | auxlib.o: auxlib.c lua.h auxlib.h luadebug.h |
81 | fallback.o: fallback.c auxlib.h lua.h luamem.h fallback.h opcode.h \ | 82 | fallback.o: fallback.c auxlib.h lua.h luamem.h fallback.h opcode.h \ |
82 | types.h tree.h func.h table.h hash.h | 83 | types.h tree.h func.h table.h hash.h |
83 | func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ | 84 | func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ |
84 | luamem.h | 85 | luamem.h |
85 | hash.o: hash.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ | 86 | hash.o: hash.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ |
86 | table.h auxlib.h | 87 | table.h auxlib.h |
87 | inout.o: inout.c auxlib.h lua.h lex.h opcode.h types.h tree.h func.h \ | 88 | inout.o: inout.c auxlib.h lua.h fallback.h opcode.h types.h tree.h \ |
88 | inout.h table.h hash.h luamem.h fallback.h | 89 | func.h hash.h inout.h lex.h zio.h luamem.h table.h undump.h |
89 | iolib.o: iolib.c lua.h auxlib.h luadebug.h lualib.h | 90 | iolib.o: iolib.c lua.h auxlib.h luadebug.h lualib.h |
90 | lex.o: lex.c auxlib.h lua.h luamem.h tree.h types.h table.h opcode.h \ | 91 | lex.o: lex.c auxlib.h lua.h luamem.h tree.h types.h table.h opcode.h \ |
91 | func.h lex.h inout.h luadebug.h parser.h | 92 | func.h lex.h zio.h inout.h luadebug.h parser.h |
92 | lua.o: lua.c lua.h auxlib.h lualib.h | 93 | lua.o: lua.c lua.h auxlib.h lualib.h |
93 | luamem.o: luamem.c luamem.h lua.h | 94 | luamem.o: luamem.c luamem.h lua.h |
94 | mathlib.o: mathlib.c lualib.h lua.h auxlib.h | 95 | mathlib.o: mathlib.c lualib.h lua.h auxlib.h |
95 | opcode.o: opcode.c luadebug.h lua.h luamem.h opcode.h types.h tree.h \ | 96 | opcode.o: opcode.c luadebug.h lua.h luamem.h opcode.h types.h tree.h \ |
96 | func.h hash.h inout.h table.h fallback.h undump.h auxlib.h | 97 | func.h hash.h inout.h table.h fallback.h auxlib.h lex.h zio.h |
97 | parser.o: parser.c luadebug.h lua.h luamem.h lex.h opcode.h types.h \ | 98 | parser.o: parser.c luadebug.h lua.h luamem.h lex.h zio.h opcode.h \ |
98 | tree.h func.h hash.h inout.h table.h | 99 | types.h tree.h func.h hash.h inout.h table.h |
99 | strlib.o: strlib.c lua.h auxlib.h lualib.h | 100 | strlib.o: strlib.c lua.h auxlib.h lualib.h |
100 | table.o: table.c luamem.h auxlib.h lua.h opcode.h types.h tree.h \ | 101 | table.o: table.c luamem.h auxlib.h lua.h func.h types.h tree.h \ |
101 | func.h hash.h table.h inout.h fallback.h luadebug.h | 102 | opcode.h hash.h table.h inout.h fallback.h luadebug.h |
102 | tree.o: tree.c luamem.h lua.h tree.h types.h lex.h hash.h opcode.h \ | 103 | tree.o: tree.c luamem.h lua.h tree.h types.h lex.h zio.h hash.h \ |
103 | func.h table.h fallback.h | 104 | opcode.h func.h table.h fallback.h |
104 | undump.o: undump.c opcode.h lua.h types.h tree.h func.h luamem.h \ | 105 | undump.o: undump.c auxlib.h lua.h opcode.h types.h tree.h func.h \ |
105 | table.h undump.h | 106 | luamem.h table.h undump.h zio.h |
107 | y.tab.o: y.tab.c luadebug.h lua.h luamem.h lex.h zio.h opcode.h \ | ||
108 | types.h tree.h func.h hash.h inout.h table.h | ||
109 | zio.o: zio.c zio.h | ||