new file 'types.h'

This commit is contained in:
Roberto Ierusalimschy 1994-12-23 18:47:59 -02:00
parent 89d823f16b
commit 96b2b90c50

View File

@ -1,4 +1,4 @@
# $Id: makefile,v 1.9 1994/11/23 20:12:11 roberto Exp $ # $Id: makefile,v 1.9 1994/11/23 20:15:04 roberto Exp roberto $
# Compilation parameters # Compilation parameters
CC = gcc CC = gcc
CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2
@ -55,25 +55,24 @@ clear :
rcsclean rcsclean
rm -f *.o rm -f *.o
rm -f y.tab.c y.tab.h rm -f y.tab.c y.tab.h
co lua.h lualib.h
% : RCS/%,v % : RCS/%,v
co $@ co $@
fallback.o : fallback.c mem.h fallback.h opcode.h lua.h tree.h inout.h fallback.o : fallback.c mem.h fallback.h opcode.h lua.h types.h tree.h inout.h
hash.o : hash.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h hash.o : hash.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
inout.o : inout.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h inout.o : inout.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
iolib.o : iolib.c mem.h lua.h lualib.h iolib.o : iolib.c mem.h lua.h lualib.h
lex.o : lex.c tree.h table.h opcode.h lua.h inout.h y.tab.h ugly.h lex.o : lex.c tree.h types.h table.h opcode.h lua.h inout.h y.tab.h ugly.h
lua.o : lua.c lua.h lualib.h lua.o : lua.c lua.h lualib.h
make.o : make.c lua.h lualib.h
mathlib.o : mathlib.c lualib.h lua.h mathlib.o : mathlib.c lualib.h lua.h
mem.o : mem.c mem.h lua.h mem.o : mem.c mem.h lua.h
newlua.o : newlua.c lua.h lualib.h opcode.o : opcode.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \
opcode.o : opcode.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h fallback.h fallback.h
strlib.o : strlib.c mem.h lua.h lualib.h strlib.o : strlib.c mem.h lua.h lualib.h
table.o : table.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h fallback.h table.o : table.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h \
temp1.o : temp1.c lua.h fallback.h
temp2.o : temp2.c lua.h tree.o : tree.c mem.h lua.h tree.h types.h table.h opcode.h
tree.o : tree.c mem.h lua.h tree.h table.h opcode.h y.tab.o : y.tab.c mem.h opcode.h lua.h types.h tree.h hash.h inout.h table.h
y.tab.o : y.tab.c mem.h opcode.h lua.h tree.h hash.h inout.h table.h