diff options
| author | Richard M. Stallman | 1997-08-30 07:14:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-30 07:14:23 +0000 |
| commit | fdeed41814651afcd313a434ff589577a2a38ee5 (patch) | |
| tree | d42bdc2e06350cba806d97f6a2d1b56742970675 | |
| parent | 211f7dcdee2710ddb3b22680ab5c6956a0b0ddae (diff) | |
| download | emacs-fdeed41814651afcd313a434ff589577a2a38ee5.tar.gz emacs-fdeed41814651afcd313a434ff589577a2a38ee5.zip | |
(man/Makefile): New target.
(tags): Define env var EMACS and run Makefile from build dir.
| -rw-r--r-- | Makefile.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 9be5e28b19d..9a137b2e0df 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -247,6 +247,9 @@ src/config.stamp: src/config.in config.status | |||
| 247 | lib-src/Makefile: lib-src/Makefile.in config.status | 247 | lib-src/Makefile: lib-src/Makefile.in config.status |
| 248 | ./config.status | 248 | ./config.status |
| 249 | 249 | ||
| 250 | man/Makefile: man/Makefile.in config.status | ||
| 251 | ./config.status | ||
| 252 | |||
| 250 | oldXMenu/Makefile: oldXMenu/Makefile.in config.status | 253 | oldXMenu/Makefile: oldXMenu/Makefile.in config.status |
| 251 | ./config.status | 254 | ./config.status |
| 252 | 255 | ||
| @@ -542,8 +545,11 @@ relock: | |||
| 542 | (cd lwlib; chmod u+w *.[ch] Makefile README) | 545 | (cd lwlib; chmod u+w *.[ch] Makefile README) |
| 543 | (cd src; $(MAKE) $(MFLAGS) relock) | 546 | (cd src; $(MAKE) $(MFLAGS) relock) |
| 544 | 547 | ||
| 545 | TAGS tags: lib-src | 548 | TAGS tags: lib-src src |
| 546 | cd ${srcdir}/src; $(MAKE) tags | 549 | export EMACSDIR; EMACSDIR=`pwd`/src; \ |
| 550 | export EMACS; EMACS=`pwd`/src/emacs; \ | ||
| 551 | cd ${srcdir}/src; \ | ||
| 552 | $(MAKE) tags -f $$EMACSDIR/Makefile | ||
| 547 | 553 | ||
| 548 | check: | 554 | check: |
| 549 | @echo "We don't have any tests for GNU Emacs yet." | 555 | @echo "We don't have any tests for GNU Emacs yet." |