(bin_SCRIPTS): New macro, for yacc.

(MOSTLYCLEANFILES): Add yacc.
(yacc): New rule.
This commit is contained in:
Paul Eggert
2002-12-13 12:17:59 +00:00
parent 148b7779f3
commit d8388d7ab6

View 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)