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 /lib-src/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 'lib-src/Makefile.in')
-rw-r--r-- | lib-src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 2de64113921..eb3dc026c05 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -304,7 +304,7 @@ TAGS: etags${EXEEXT} etags *.[ch] ../lib/libgnu.a: $(config_h) - cd ../lib && $(MAKE) libgnu.a + $(MAKE) -C ../lib libgnu.a regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h) ${CC} -c ${CPP_CFLAGS} ${srcdir}/../src/regex.c |