]> git.saurik.com Git - bison.git/blobdiff - src/Makefile.am
Do not let the scan-skel token buffer grow unboundedly in the usual case.
[bison.git] / src / Makefile.am
index 44b7c13fe6b122c65fdc9575ff8a20ad2ce299ef..2ae2ee8552d6dbd60f5b6527145d1bf68208664e 100644 (file)
@@ -29,6 +29,7 @@ INCLUDES = -I$(top_builddir)      \
 LDADD = ../lib/libbison.a $(LIBINTL)
 
 bin_PROGRAMS = bison
+bin_SCRIPTS = yacc
 
 bison_SOURCES =                                  \
        LR0.c LR0.h                               \
@@ -65,5 +66,12 @@ bison_SOURCES =                                \
 
 BUILT_SOURCES = scan-skel.c scan-gram.c parse-gram.c parse-gram.h
 
+MOSTLYCLEANFILES = yacc
+
+yacc:
+       echo '#! /bin/sh' >$@
+       echo 'exec $(bindir)/bison -y "$$@"' >>$@
+       chmod a+x $@
+
 echo:
        echo $(bison_SOURCES) $(noinst_HEADERS)