From 572ee14b523a666d2be896825f55e6d05a260f7b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 2 Feb 1995 17:04:16 -0200 Subject: use yacc++ instead of yacc. --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index b854221e..f9628942 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -# $Id: makefile,v 1.10 1994/12/23 20:47:59 roberto Exp celes $ +# $Id: makefile,v 1.12 1995/02/02 19:02:03 roberto Exp $ # Compilation parameters CC = gcc CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 @@ -48,8 +48,8 @@ liblua.so.1.0 : lua.o $(CC) $(CFLAGS) -c -o $@ $< -parser.c : lua.stx exscript - yacc -d lua.stx ; mv -f y.tab.c parser.c ; mv -f y.tab.h parser.h ; ex parser.c