Added rule to automatically run autoconf & config.status whenever configure.in changes. Set AUTOUPDATE_CONFIGURE to use it.

git-svn-id: svn://10.0.0.236/trunk@64971 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cls%seawood.org
2000-04-03 00:56:31 +00:00
parent dac2734b78
commit 41e17e31b3
3 changed files with 384 additions and 341 deletions

View File

@@ -162,6 +162,7 @@ TARGET_CPU = @TARGET_CPU@
TARGET_OS = @TARGET_OS@
TARGET_MD_ARCH = @TARGET_MD_ARCH@
AUTOCONF = @AUTOCONF@
EMACS = @EMACS@
PERL = @PERL@
RANLIB = @RANLIB@

View File

@@ -838,7 +838,7 @@ endif #STRICT_CPLUSPLUS_SUFFIX
###############################################################################
# Note: Passing depth to make-makefile is optional.
# It saves the script some work, though.
Makefile: Makefile.in
Makefile: Makefile.in $(topsrcdir)/configure
@$(PERL) $(AUTOCONF_TOOLS)/make-makefile -t $(topsrcdir) -d $(DEPTH)
ifdef SUBMAKEFILES
@@ -847,6 +847,11 @@ $(SUBMAKEFILES): % : $(srcdir)/%.in
@$(PERL) $(AUTOCONF_TOOLS)/make-makefile -t $(topsrcdir) -d $(DEPTH) $@
endif
ifdef AUTOUPDATE_CONFIGURE
$(topsrcdir)/configure: $(topsrcdir)/configure.in
(cd $(topsrcdir) && $(AUTOCONF)) && (cd $(DEPTH) && ./config.status --recheck)
endif
###############################################################################
# Bunch of things that extend the 'export' rule (in order):
###############################################################################

717
mozilla/configure vendored

File diff suppressed because it is too large Load Diff