aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-02-02 17:04:16 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1995-02-02 17:04:16 -0200
commit572ee14b523a666d2be896825f55e6d05a260f7b (patch)
tree6cf46b7c6a6575c9697b540929415dabb862443b
parent61986261385344e176faa2a06d0351954b89cff9 (diff)
downloadlua-572ee14b523a666d2be896825f55e6d05a260f7b.tar.gz
lua-572ee14b523a666d2be896825f55e6d05a260f7b.tar.bz2
lua-572ee14b523a666d2be896825f55e6d05a260f7b.zip
use yacc++ instead of yacc.
-rw-r--r--exscript3
-rw-r--r--makefile6
2 files changed, 3 insertions, 6 deletions
diff --git a/exscript b/exscript
deleted file mode 100644
index 0a0f2a9f..00000000
--- a/exscript
+++ /dev/null
@@ -1,3 +0,0 @@
11d
2x
3
diff --git a/makefile b/makefile
index b854221e..f9628942 100644
--- a/makefile
+++ b/makefile
@@ -1,4 +1,4 @@
1# $Id: makefile,v 1.10 1994/12/23 20:47:59 roberto Exp celes $ 1# $Id: makefile,v 1.12 1995/02/02 19:02:03 roberto Exp $
2# Compilation parameters 2# Compilation parameters
3CC = gcc 3CC = gcc
4CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 4CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2
@@ -48,8 +48,8 @@ liblua.so.1.0 : lua.o
48 $(CC) $(CFLAGS) -c -o $@ $< 48 $(CC) $(CFLAGS) -c -o $@ $<
49 49
50 50
51parser.c : lua.stx exscript 51parser.c : lua.stx
52 yacc -d lua.stx ; mv -f y.tab.c parser.c ; mv -f y.tab.h parser.h ; ex parser.c <exscript 52 yacc++ -d lua.stx ; mv -f y.tab.c parser.c ; mv -f y.tab.h parser.h
53 53
54clear : 54clear :
55 rcsclean 55 rcsclean