commit 572ee14b523a666d2be896825f55e6d05a260f7b
parent 61986261385344e176faa2a06d0351954b89cff9
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 2 Feb 1995 17:03:57 -0200
use yacc++ instead of yacc.
Diffstat:
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/exscript b/exscript
@@ -1,3 +0,0 @@
-1d
-x
-
diff --git 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 <exscript
+parser.c : lua.stx
+ yacc++ -d lua.stx ; mv -f y.tab.c parser.c ; mv -f y.tab.h parser.h
clear :
rcsclean