aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2008-06-22 02:29:32 +0000
committerGlenn Morris2008-06-22 02:29:32 +0000
commit3656581540295dc1d28e2c3341092dba057f2523 (patch)
tree550ce8af72c3b2136f13f246274024ef9cec469d /src
parent8a6a564281ce27b9ac76748a508a0cbab517e3a8 (diff)
downloademacs-3656581540295dc1d28e2c3341092dba057f2523.tar.gz
emacs-3656581540295dc1d28e2c3341092dba057f2523.zip
(.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/Makefile.in2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7f5f9f488ab..52b7bf078f4 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,7 @@
12008-06-22 Glenn Morris <rgm@gnu.org> 12008-06-22 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}. 3 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
4 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
4 5
52008-06-21 Stefan Monnier <monnier@iro.umontreal.ca> 62008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6 7
diff --git a/src/Makefile.in b/src/Makefile.in
index d4beca76ae6..8c85c2c4414 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1334,6 +1334,8 @@ tags: TAGS TAGS-LISP $(lwlibdir)TAGS
1334 1334
1335/* These suffix rules do not allow additional dependencies, sadly, so 1335/* These suffix rules do not allow additional dependencies, sadly, so
1336 adding a bootstrap-emacs%{EXEEXT} dependency does not work --Stef */ 1336 adding a bootstrap-emacs%{EXEEXT} dependency does not work --Stef */
1337.SUFFIXES: .elc .el
1338
1337.el.elc: 1339.el.elc:
1338 @cd ../lisp; $(MAKE) $(MFLAGS) compile-onefile \ 1340 @cd ../lisp; $(MAKE) $(MFLAGS) compile-onefile \
1339 THEFILE=$< EMACS=../src/bootstrap-emacs${EXEEXT} 1341 THEFILE=$< EMACS=../src/bootstrap-emacs${EXEEXT}