From dc97a07e19abaa6942c84c88d001e8cccd517d1d Mon Sep 17 00:00:00 2001 From: Waldemar Celes Date: Tue, 27 Dec 1994 18:50:38 -0200 Subject: better names for 'y.tab.c' and 'y.tab.h' (now they are moved to 'parser.c' and 'parser.h') --- makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index c80943cb..b854221e 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.9 1994/11/23 20:15:04 roberto Exp roberto $ +# $Id: makefile,v 1.10 1994/12/23 20:47:59 roberto Exp celes $ # Compilation parameters CC = gcc CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 @@ -11,7 +11,7 @@ ARFLAGS = rvl # Aplication modules LUAMOD = \ - y.tab \ + parser \ lex \ opcode \ hash \ @@ -33,7 +33,7 @@ LIBOBJS = $(LIBMOD:%=%.o) lua : lua.o lua.a lualib.a $(CC) $(CFLAGS) -o $@ lua.c lua.a lualib.a -lm -lua.a : y.tab.c $(LUAOBJS) +lua.a : parser.c $(LUAOBJS) $(AR) $(ARFLAGS) $@ $? ranlib lua.a @@ -48,13 +48,13 @@ liblua.so.1.0 : lua.o $(CC) $(CFLAGS) -c -o $@ $< -y.tab.c : lua.stx exscript - yacc -d lua.stx ; ex y.tab.c