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. --- exscript | 3 --- makefile | 6 +++--- 2 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 exscript diff --git a/exscript b/exscript deleted file mode 100644 index 0a0f2a9f..00000000 --- a/exscript +++ /dev/null @@ -1,3 +0,0 @@ -1d -x - 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