]> git.saurik.com Git - bison.git/commitdiff
build: avoid concurrent extraction of calc++.
authorAkim Demaille <demaille@gostai.com>
Mon, 29 Jun 2009 13:02:48 +0000 (15:02 +0200)
committerAkim Demaille <demaille@gostai.com>
Mon, 29 Jun 2009 13:09:21 +0000 (15:09 +0200)
* examples/calc++/Makefile.am (calc.stamp): New.
Depend on it to create the sources of calc++ so that concurrent
builds don't launch several "extexi" in parallel.
Not only this is inefficient, this also builds incorrect sources
with several extractions mixed together.

ChangeLog
examples/calc++/Makefile.am

index aa23252a1f910cb845fe3489c6b914b3d1315222..bc9713603a2c562c55ef0e7b40cd6557130ef3f2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2009-06-29  Akim Demaille  <demaille@gostai.com>
+
+       build: avoid concurrent extraction of calc++.
+       * examples/calc++/Makefile.am (calc.stamp): New.
+       Depend on it to create the sources of calc++ so that concurrent
+       builds don't launch several "extexi" in parallel.
+       Not only this is inefficient, this also builds incorrect sources
+       with several extractions mixed together.
+
 2009-06-29  Akim Demaille  <demaille@gostai.com>
 
        parse.error: fix.
index 5c29a3b73627f56e877c6f4fbcb2f21e23c9c321..c7045a5d5fb2296fdd4a72d09c02438a5698e877 100644 (file)
@@ -1,5 +1,5 @@
 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
-## Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
+## Copyright (C) 2005, 2006, 2008, 2009 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
@@ -31,12 +31,16 @@ $(BISON): $(BISON_IN)
 doc = $(top_srcdir)/doc/bison.texinfo
 extexi = $(top_srcdir)/examples/extexi
 # Extract in src.
-$(calc_extracted): $(doc) $(extexi)
+calc.stamp: $(doc) $(extexi)
+       rm -f $@ $@.tmp
+       touch $@.tmp
        cd $(srcdir) && \
           $(AWK) -f ../extexi -v VERSION="$(VERSION)" \
             ../../doc/bison.texinfo -- calc++-parser.yy \
             calc++-scanner.ll calc++.cc calc++-driver.hh calc++-driver.cc
+       mv $@.tmp $@
 
+$(calc_extracted): calc.stamp
 
 ## ------------------- ##
 ## Parser generation.  ##