From: Peter Verthez Date: Sun, 13 Oct 2002 15:28:55 +0000 (+0000) Subject: Don't include Makefile.inc: add specific rule here (portability). X-Git-Url: https://git.dlugolecki.net.pl/?a=commitdiff_plain;h=1212c16d137dfadc22a0606004be47a3184bc42b;p=gedcom-parse.git Don't include Makefile.inc: add specific rule here (portability). --- diff --git a/gedcom/Makefile.am b/gedcom/Makefile.am index 1f24dbb..aa33f87 100644 --- a/gedcom/Makefile.am +++ b/gedcom/Makefile.am @@ -56,8 +56,6 @@ EXTRA_DIST = gedcom.y \ gedcom_date.lex \ gedcom_lex_common.c -include $(top_srcdir)/Makefile.inc - gedcom.tab.c gedcom.tab.h: gedcom.y $(YACC) $(YFLAGS) --name-prefix=gedcom_ $< @@ -100,3 +98,14 @@ lex.gedcom_lohi_.test.o: lex.gedcom_lohi_.c clean-local: rm -f $(EXTRA_PROGRAMS) + +%.tabgen.h: %.tab.h + if [ ! -r $(srcdir)/$@ ] ; \ + then \ + touch $(srcdir)/$@; \ + fi + if ! diff -q $< $(srcdir)/$@ > /dev/null; \ + then \ + rm $(srcdir)/$@; \ + cp $(srcdir)/$< $(srcdir)/$@; \ + fi