diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-25 05:37:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-25 05:37:34 +0000 |
commit | 5d8f5b1cb81fc7e36fda77dd36c7182eec12dcaa (patch) | |
tree | d33e7874e60737bc6ff2b9fb0646203c56bceb39 /src/Makefile.in | |
parent | 5ce2eac9b84ec4bba8a39384fd2a341f6d4e49ee (diff) | |
download | emacs-5d8f5b1cb81fc7e36fda77dd36c7182eec12dcaa.tar.gz |
(${lispsource}TAGS): Specify ETAGS var in inner make.
(../src/$(OLDXMENU)): New target.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index a4587e04ebe..e4b19585a38 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -876,6 +876,8 @@ shortnames: and remake temacs if lwlib gets changed by this. */ stamp-oldxmenu: ${OLDXMENU} ../src/$(OLDXMENU) touch stamp-oldxmenu +/* Supply an ordering for parallel make. */ +../src/$(OLDXMENU): ${OLDXMENU} #ifdef USE_X_TOOLKIT $(OLDXMENU): really-lwlib @@ -1149,6 +1151,7 @@ TAGS: $(srcdir)/$(ctagsfiles) $$DIR/../lib-src/etags --include=../lisp/TAGS \ --regex='/[ ]*DEFVAR_[A-Z_ (]+"\([^"]+\)"/' $(ctagsfiles) ${lispsource}TAGS: ${lispsource}$(lisptagsfiles) - cd ${lispsource}; $(MAKE) TAGS + export DIR; DIR=`pwd`; cd ${lispsource}; \ + $(MAKE) TAGS ETAGS=$$DIR/../lib-src/etags tags: TAGS ${lispsource}TAGS .PHONY: tags |