From 2f061b441ef2a882a5879acea43c0143faf1dd93 Mon Sep 17 00:00:00 2001 From: rlar Date: Sat, 10 Oct 2015 19:31:04 +0200 Subject: [PATCH] Makefile.am, fix dependency rules for bison generated files which have been lost in commit > Date: Sun Jul 5 19:34:25 2015 +0200 > > polish bison/flex makefile rules --- src/frontend/Makefile.am | 2 ++ src/spicelib/parser/Makefile.am | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/frontend/Makefile.am b/src/frontend/Makefile.am index a964842af..d93b48c05 100644 --- a/src/frontend/Makefile.am +++ b/src/frontend/Makefile.am @@ -198,5 +198,7 @@ AM_YFLAGS = -d MAINTAINERCLEANFILES = Makefile.in +$(srcdir)/parse.c : parse-bison.c + parse-bison.c : parse-bison.y $(am__skipyacc) $(YACCCOMPILE) -o $@ $< diff --git a/src/spicelib/parser/Makefile.am b/src/spicelib/parser/Makefile.am index 3d2692d11..807b52eb7 100644 --- a/src/spicelib/parser/Makefile.am +++ b/src/spicelib/parser/Makefile.am @@ -67,6 +67,8 @@ libinp_la_SOURCES = \ sperror.c \ inpxx.h +$(srcdir)/inpptree.c : inpptree-parser.c + inpptree-parser.c : inpptree-parser.y $(am__skipyacc) $(YACCCOMPILE) -o $@ $<