diff options
| author | Andreas Schwab | 2003-07-23 11:16:55 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-07-23 11:16:55 +0000 |
| commit | 53b583d38f49696f257f157f5df2d66dbce14841 (patch) | |
| tree | 1dfa76ad2baeb0fcf994133dec37dbbf6e4f69fe | |
| parent | 19650fd655a263b5611306f1a90b085af2ad0faa (diff) | |
| download | emacs-53b583d38f49696f257f157f5df2d66dbce14841.tar.gz emacs-53b583d38f49696f257f157f5df2d66dbce14841.zip | |
(YACC): Remove, not used.
(MAINT): Don't set.
(${srcdir}/configure, $(srcdir)/src/stamp-h.in): Use @MAINT@ to
disable dependency on ${srcdir}/configure.in when maintainer mode
is disabled.
| -rw-r--r-- | Makefile.in | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index b16a8571416..3549350b3e7 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -68,7 +68,6 @@ LDFLAGS=@LDFLAGS@ | |||
| 68 | CPPFLAGS=@CPPFLAGS@ | 68 | CPPFLAGS=@CPPFLAGS@ |
| 69 | C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ | 69 | C_SWITCH_X_SITE=@C_SWITCH_X_SITE@ |
| 70 | LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@ | 70 | LD_SWITCH_X_SITE=@LD_SWITCH_X_SITE@ |
| 71 | YACC=@YACC@ | ||
| 72 | EXEEXT=@EXEEXT@ | 71 | EXEEXT=@EXEEXT@ |
| 73 | 72 | ||
| 74 | ### These help us choose version- and architecture-specific directories | 73 | ### These help us choose version- and architecture-specific directories |
| @@ -236,9 +235,6 @@ SUBDIR_MAKEFILES = lib-src/Makefile man/Makefile lispref/Makefile lispintro/Make | |||
| 236 | COPYDIR = ${srcdir}/etc ${srcdir}/lisp | 235 | COPYDIR = ${srcdir}/etc ${srcdir}/lisp |
| 237 | COPYDESTS = ${etcdir} ${lispdir} | 236 | COPYDESTS = ${etcdir} ${lispdir} |
| 238 | 237 | ||
| 239 | # Set to FRC to force running autoconf and autoheader | ||
| 240 | MAINT = | ||
| 241 | |||
| 242 | all: ${SUBDIR} leim | 238 | all: ${SUBDIR} leim |
| 243 | 239 | ||
| 244 | removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g' | 240 | removenullpaths=sed -e 's/^://g' -e 's/:$$//g' -e 's/::/:/g' |
| @@ -291,12 +287,12 @@ Makefile: $(srcdir)/Makefile.in config.status | |||
| 291 | config.status: ${srcdir}/configure | 287 | config.status: ${srcdir}/configure |
| 292 | ./config.status --recheck | 288 | ./config.status --recheck |
| 293 | 289 | ||
| 294 | ${srcdir}/configure: $(MAINT) | 290 | ${srcdir}/configure: @MAINT@ ${srcdir}/configure.in |
| 295 | cd ${srcdir} && autoconf | 291 | cd ${srcdir} && autoconf |
| 296 | 292 | ||
| 297 | $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in | 293 | $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in |
| 298 | @true | 294 | @true |
| 299 | $(srcdir)/src/stamp-h.in: $(MAINT) | 295 | $(srcdir)/src/stamp-h.in: @MAINT@ ${srcdir}/configure.in |
| 300 | cd ${srcdir} && autoheader | 296 | cd ${srcdir} && autoheader |
| 301 | rm -f $(srcdir)/src/stamp-h.in | 297 | rm -f $(srcdir)/src/stamp-h.in |
| 302 | echo timestamp > $(srcdir)/src/stamp-h.in | 298 | echo timestamp > $(srcdir)/src/stamp-h.in |