summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-16 13:50:22 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-06-16 13:50:22 -0300
commitc9a2dfeb2c71b1c6b8164a1e5aad4b178950e197 (patch)
tree6f099e983ecb968f625a8824ac2ca78e625882e3 /makefile
parent9fe5be3acf340b90fe0c24d36a601adaf6f21c79 (diff)
downloadlua-c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197.tar.gz
lua-c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197.tar.bz2
lua-c9a2dfeb2c71b1c6b8164a1e5aad4b178950e197.zip
using "zio" for parsing Lua code.
Diffstat (limited to 'makefile')
-rw-r--r--makefile34
1 files changed, 19 insertions, 15 deletions
diff --git a/makefile b/makefile
index bc56a431..7fe53d50 100644
--- a/makefile
+++ b/makefile
@@ -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
37LIBOBJS = \ 38LIBOBJS = \
38 iolib.o \ 39 iolib.o \
@@ -77,29 +78,32 @@ clear :
77 co $@ 78 co $@
78 79
79 80
80auxlib.o: auxlib.c lua.h auxlib.h 81auxlib.o: auxlib.c lua.h auxlib.h luadebug.h
81fallback.o: fallback.c auxlib.h lua.h luamem.h fallback.h opcode.h \ 82fallback.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
83func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \ 84func.o: func.c luadebug.h lua.h table.h tree.h types.h opcode.h func.h \
84 luamem.h 85 luamem.h
85hash.o: hash.c luamem.h opcode.h lua.h types.h tree.h func.h hash.h \ 86hash.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
87inout.o: inout.c auxlib.h lua.h lex.h opcode.h types.h tree.h func.h \ 88inout.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
89iolib.o: iolib.c lua.h auxlib.h luadebug.h lualib.h 90iolib.o: iolib.c lua.h auxlib.h luadebug.h lualib.h
90lex.o: lex.c auxlib.h lua.h luamem.h tree.h types.h table.h opcode.h \ 91lex.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
92lua.o: lua.c lua.h auxlib.h lualib.h 93lua.o: lua.c lua.h auxlib.h lualib.h
93luamem.o: luamem.c luamem.h lua.h 94luamem.o: luamem.c luamem.h lua.h
94mathlib.o: mathlib.c lualib.h lua.h auxlib.h 95mathlib.o: mathlib.c lualib.h lua.h auxlib.h
95opcode.o: opcode.c luadebug.h lua.h luamem.h opcode.h types.h tree.h \ 96opcode.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
97parser.o: parser.c luadebug.h lua.h luamem.h lex.h opcode.h types.h \ 98parser.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
99strlib.o: strlib.c lua.h auxlib.h lualib.h 100strlib.o: strlib.c lua.h auxlib.h lualib.h
100table.o: table.c luamem.h auxlib.h lua.h opcode.h types.h tree.h \ 101table.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
102tree.o: tree.c luamem.h lua.h tree.h types.h lex.h hash.h opcode.h \ 103tree.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
104undump.o: undump.c opcode.h lua.h types.h tree.h func.h luamem.h \ 105undump.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
107y.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
109zio.o: zio.c zio.h