X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/573a6cd3568911ec7a698daea60fa24f36088cd2..b203fc2c07f45cdd77a59f38795fed0109c75716:/src/Makefile.am?ds=sidebyside diff --git a/src/Makefile.am b/src/Makefile.am index 78e7a422..8f348329 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -## Copyright (C) 2001, 2002 Free Software Foundation, Inc. +## Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -20,15 +20,18 @@ DEFS = @DEFS@ \ -DLOCALEDIR=\"$(datadir)/locale\" AM_CFLAGS = $(WARNING_CFLAGS) $(WERROR_CFLAGS) +AM_CPPFLAGS = -I$(top_srcdir)/lib -I../lib AM_YFLAGS = "-dv" -# config.h is in build/. -INCLUDES = -I$(top_builddir) \ - -I$(top_srcdir)/lib +LDADD = ../lib/libbison.a $(LIBINTL) -LDADD = $(INTLLIBS) ../lib/libbison.a +# Use our own Bison to build the parser. Of course, you ought to +# keep a sane version of Bison nearby... +YACC = ../tests/bison -y bin_PROGRAMS = bison +bin_SCRIPTS = $(YACC_SCRIPT) +EXTRA_SCRIPTS = yacc bison_SOURCES = \ LR0.c LR0.h \ @@ -55,15 +58,22 @@ bison_SOURCES = \ scan-gram.l \ scan-skel.l \ state.c state.h \ - struniq.c struniq.h \ symlist.c symlist.h \ symtab.c symtab.h \ system.h \ tables.h tables.c \ + uniqstr.c uniqstr.h \ vcg.c vcg.h \ vcg_defaults.h 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)