aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-12-23 18:47:59 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-12-23 18:47:59 -0200
commit96b2b90c503beca92122890ffba091d88ea26737 (patch)
tree9b6b6166b24d43ef1361f91b4fdfbf6f5cc67e3f
parent89d823f16bd8e60c59ec6358ce8fe1e7db4483dc (diff)
downloadlua-96b2b90c503beca92122890ffba091d88ea26737.tar.gz
lua-96b2b90c503beca92122890ffba091d88ea26737.tar.bz2
lua-96b2b90c503beca92122890ffba091d88ea26737.zip
new file 'types.h'
-rw-r--r--makefile25
1 files changed, 12 insertions, 13 deletions
diff --git a/makefile b/makefile
index 3d98cd71..c80943cb 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
1# $Id: makefile,v 1.9 1994/11/23 20:12:11 roberto Exp $ 1# $Id: makefile,v 1.9 1994/11/23 20:15:04 roberto Exp roberto $
2# Compilation parameters 2# Compilation parameters
3CC = gcc 3CC = gcc
4CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 4CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2
@@ -55,25 +55,24 @@ clear :
55 rcsclean 55 rcsclean
56 rm -f *.o 56 rm -f *.o
57 rm -f y.tab.c y.tab.h 57 rm -f y.tab.c y.tab.h
58 co lua.h lualib.h
58 59
59% : RCS/%,v 60% : RCS/%,v
60 co $@ 61 co $@
61 62
62 63
63fallback.o : fallback.c mem.h fallback.h opcode.h lua.h tree.h inout.h 64fallback.o : fallback.c mem.h fallback.h opcode.h lua.h types.h tree.h inout.h
64hash.o : hash.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h 65hash.o : hash.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
65inout.o : inout.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h 66inout.o : inout.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
66iolib.o : iolib.c mem.h lua.h lualib.h 67iolib.o : iolib.c mem.h lua.h lualib.h
67lex.o : lex.c tree.h table.h opcode.h lua.h inout.h y.tab.h ugly.h 68lex.o : lex.c tree.h types.h table.h opcode.h lua.h inout.h y.tab.h ugly.h
68lua.o : lua.c lua.h lualib.h 69lua.o : lua.c lua.h lualib.h
69make.o : make.c lua.h lualib.h
70mathlib.o : mathlib.c lualib.h lua.h 70mathlib.o : mathlib.c lualib.h lua.h
71mem.o : mem.c mem.h lua.h 71mem.o : mem.c mem.h lua.h
72newlua.o : newlua.c lua.h lualib.h 72opcode.o : opcode.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \
73opcode.o : opcode.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h fallback.h 73 fallback.h
74strlib.o : strlib.c mem.h lua.h lualib.h 74strlib.o : strlib.c mem.h lua.h lualib.h
75table.o : table.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h fallback.h 75table.o : table.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \
76temp1.o : temp1.c lua.h 76 fallback.h
77temp2.o : temp2.c lua.h 77tree.o : tree.c mem.h lua.h tree.h types.h table.h opcode.h
78tree.o : tree.c mem.h lua.h tree.h table.h opcode.h 78y.tab.o : y.tab.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
79y.tab.o : y.tab.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h