diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/Makefile.in | 2 |
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 @@ | |||
| 1 | 2008-06-22 Glenn Morris <rgm@gnu.org> | 1 | 2008-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 | ||
| 5 | 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2008-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} |