diff options
| author | Andreas Schwab | 2002-04-23 09:52:54 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2002-04-23 09:52:54 +0000 |
| commit | 2b572fdcd5c0b3dc27adee396a335e20e515cc6f (patch) | |
| tree | 6388c50f26db0ca14fe15db96b223837c7eea2be | |
| parent | 887d3c942fa3db9d6132c7b84cbe372d4d68e96b (diff) | |
| download | emacs-2b572fdcd5c0b3dc27adee396a335e20e515cc6f.tar.gz emacs-2b572fdcd5c0b3dc27adee396a335e20e515cc6f.zip | |
(MAINT): New variable.
(${srcdir}/configure, $(srcdir)/src/stamp-h.in): Depend on this
instead of configure.in, to avoid running autoconf and autoheader
unless explicitly requested.
| -rw-r--r-- | Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index b7dfca2f809..e1ae9e8d395 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -227,6 +227,9 @@ SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile lispref/Makefile lispintro/Make | |||
| 227 | COPYDIR = ${srcdir}/etc ${srcdir}/lisp | 227 | COPYDIR = ${srcdir}/etc ${srcdir}/lisp |
| 228 | COPYDESTS = ${etcdir} ${lispdir} | 228 | COPYDESTS = ${etcdir} ${lispdir} |
| 229 | 229 | ||
| 230 | # Set to FRC to force running autoconf and autoheader | ||
| 231 | MAINT = | ||
| 232 | |||
| 230 | all: ${SUBDIR} leim | 233 | all: ${SUBDIR} leim |
| 231 | 234 | ||
| 232 | removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g' | 235 | removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g' |
| @@ -277,12 +280,12 @@ Makefile: $(srcdir)/Makefile.in config.status | |||
| 277 | config.status: ${srcdir}/configure | 280 | config.status: ${srcdir}/configure |
| 278 | ./config.status --recheck | 281 | ./config.status --recheck |
| 279 | 282 | ||
| 280 | ${srcdir}/configure: configure.in | 283 | ${srcdir}/configure: $(MAINT) |
| 281 | cd ${srcdir} && autoconf | 284 | cd ${srcdir} && autoconf |
| 282 | 285 | ||
| 283 | $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in | 286 | $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in |
| 284 | @true | 287 | @true |
| 285 | $(srcdir)/src/stamp-h.in: configure.in | 288 | $(srcdir)/src/stamp-h.in: $(MAINT) |
| 286 | cd ${srcdir} && autoheader | 289 | cd ${srcdir} && autoheader |
| 287 | rm -f $(srcdir)/src/stamp-h.in | 290 | rm -f $(srcdir)/src/stamp-h.in |
| 288 | echo timestamp > $(srcdir)/src/stamp-h.in | 291 | echo timestamp > $(srcdir)/src/stamp-h.in |