Automatically rerun autogen.sh if configure.in is modified.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9971 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
f20d0b7946
commit
611e41e04b
2 changed files with 11 additions and 5 deletions
|
|
@ -1,6 +1,9 @@
|
||||||
Version 1.3.32 (in progress)
|
Version 1.3.32 (in progress)
|
||||||
============================
|
============================
|
||||||
|
|
||||||
|
10/09/2007: olly
|
||||||
|
Automatically rerun autogen.sh if configure.in is modified.
|
||||||
|
|
||||||
10/09/2007: olly
|
10/09/2007: olly
|
||||||
Enhance check-%-test-suite rule and friends to give a more helpful
|
Enhance check-%-test-suite rule and friends to give a more helpful
|
||||||
error message if you try them for a language which doesn't exist
|
error message if you try them for a language which doesn't exist
|
||||||
|
|
|
||||||
13
Makefile.in
13
Makefile.in
|
|
@ -508,10 +508,13 @@ configfiles:
|
||||||
Makefile: $(srcdir)/Makefile.in config.status
|
Makefile: $(srcdir)/Makefile.in config.status
|
||||||
$(SHELL) ./config.status
|
$(SHELL) ./config.status
|
||||||
|
|
||||||
# This target is usually called from Source/Makefile when configure.in has changed
|
# This target is usually called from Source/Makefile when configure.in has
|
||||||
am--refresh:
|
# changed.
|
||||||
@echo "Build system is out of date. Please reconfigure (rerun: ./autogen.sh && ./configure)"
|
am--refresh: $(srcdir)/configure
|
||||||
@exit 1
|
|
||||||
|
$(srcdir)/configure: $(srcdir)/configure.in
|
||||||
|
@echo "Build system is out of date. If the following commands fail, please reconfigure by hand (rerun: ./autogen.sh && ./configure)"
|
||||||
|
$(srcdir)/autogen.sh
|
||||||
|
$(SHELL) ./config.status --recheck
|
||||||
|
|
||||||
# Makefile ends here
|
# Makefile ends here
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue