diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-02 17:04:16 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-02-02 17:04:16 -0200 |
commit | 572ee14b523a666d2be896825f55e6d05a260f7b (patch) | |
tree | 6cf46b7c6a6575c9697b540929415dabb862443b | |
parent | 61986261385344e176faa2a06d0351954b89cff9 (diff) | |
download | lua-572ee14b523a666d2be896825f55e6d05a260f7b.tar.gz lua-572ee14b523a666d2be896825f55e6d05a260f7b.tar.bz2 lua-572ee14b523a666d2be896825f55e6d05a260f7b.zip |
use yacc++ instead of yacc.
-rw-r--r-- | exscript | 3 | ||||
-rw-r--r-- | makefile | 6 |
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 @@ | |||
1 | 1d | ||
2 | x | ||
3 | |||
@@ -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 |
3 | CC = gcc | 3 | CC = gcc |
4 | CFLAGS = -I/usr/5include -Wall -Wmissing-prototypes -Wshadow -ansi -O2 | 4 | CFLAGS = -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 | ||
51 | parser.c : lua.stx exscript | 51 | parser.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 | ||
54 | clear : | 54 | clear : |
55 | rcsclean | 55 | rcsclean |