From 10c1641b8e96877bf5c1fdfde92c038107a223d6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 23 Nov 1994 18:15:04 -0200 Subject: [PATCH] new modules 'mem' and 'fallback'. correction of dependencies --- makefile | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/makefile b/makefile index aabfa3e2..3d98cd71 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,10 @@ -# $Id: makefile,v 1.7 1994/07/19 22:04:51 celes Exp $ +# $Id: makefile,v 1.9 1994/11/23 20:12:11 roberto Exp $ # Compilation parameters CC = gcc -CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -ansi -O2 +CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 + +#CC = acc +#CFLAGS = -fast -I/usr/5include AR = ar ARFLAGS = rvl @@ -14,7 +17,9 @@ LUAMOD = \ hash \ table \ inout \ - tree + tree \ + fallback\ + mem LIBMOD = \ iolib \ @@ -36,8 +41,6 @@ lualib.a : $(LIBOBJS) $(AR) $(ARFLAGS) $@ $? ranlib $@ -.KEEP_STATE: - liblua.so.1.0 : lua.o ld -o liblua.so.1.0 $(LUAOBJS) @@ -56,3 +59,21 @@ clear : % : RCS/%,v co $@ + +fallback.o : fallback.c mem.h fallback.h opcode.h lua.h tree.h inout.h +hash.o : hash.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 tree.h hash.h inout.h table.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 +lua.o : lua.c lua.h lualib.h +make.o : make.c lua.h lualib.h +mathlib.o : mathlib.c lualib.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 tree.h hash.h inout.h table.h fallback.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 +temp1.o : temp1.c lua.h +temp2.o : temp2.c lua.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 tree.h hash.h inout.h table.h