diff options
author | Glenn Morris <rgm@gnu.org> | 2014-06-14 17:34:22 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-06-14 17:34:22 -0700 |
commit | 0d9f81376b7ef14ec7a61077a059cfa2420c5666 (patch) | |
tree | e831d8882b1e5ee5a56b3ddadb5daca054b0ea31 /lisp/Makefile.in | |
parent | 0e6929ecab39164b384c76884a7eac559a1fe9b9 (diff) | |
download | emacs-0d9f81376b7ef14ec7a61077a059cfa2420c5666.tar.gz |
Use `make -C' rather than `cd && make'
* Makefile.in: Use `make -C' rather than `cd && make' throughout.
* lib-src/Makefile.in (../lib/libgnu.a): Use `make -C' rather than `cd && make'.
* lisp/Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
* lwlib/Makefile.in ($(globals_h)): Use `make -C' rather than `cd && make'.
* src/Makefile.in: Use `make -C' rather than `cd && make' throughout.
Diffstat (limited to 'lisp/Makefile.in')
-rw-r--r-- | lisp/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 6504539ba42..cbc1d2af3ae 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -348,7 +348,7 @@ compile-clean: .PHONY: leim semantic leim: - cd ../leim && $(MAKE) all EMACS="$(EMACS)" + $(MAKE) -C ../leim all EMACS="$(EMACS)" # FIXME. Yuck. semantic: @@ -356,7 +356,7 @@ semantic: .*) EMACS="../${EMACS}" ;; \ *) EMACS="${EMACS}" ;; \ esac; \ - cd ../admin/grammars && $(MAKE) all EMACS="$${EMACS}" + $(MAKE) -C ../admin/grammars all EMACS="$${EMACS}" # Compile all Lisp files, but don't recompile those that are up to # date. Some .el files don't get compiled because they set the |