diff options
| author | Glenn Morris | 2014-06-14 17:34:22 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-06-14 17:34:22 -0700 |
| commit | 0d9f81376b7ef14ec7a61077a059cfa2420c5666 (patch) | |
| tree | e831d8882b1e5ee5a56b3ddadb5daca054b0ea31 /lib-src | |
| parent | 0e6929ecab39164b384c76884a7eac559a1fe9b9 (diff) | |
| download | emacs-0d9f81376b7ef14ec7a61077a059cfa2420c5666.tar.gz emacs-0d9f81376b7ef14ec7a61077a059cfa2420c5666.zip | |
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')
| -rw-r--r-- | lib-src/ChangeLog | 3 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 74cdf05177f..06417b3254f 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-06-15 Glenn Morris <rgm@gnu.org> | 1 | 2014-06-15 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (../lib/libgnu.a): | ||
| 4 | Use `make -C' rather than `cd && make'. | ||
| 5 | |||
| 3 | * Makefile.in (bootstrap-clean): New. | 6 | * Makefile.in (bootstrap-clean): New. |
| 4 | 7 | ||
| 5 | 2014-06-13 Glenn Morris <rgm@gnu.org> | 8 | 2014-06-13 Glenn Morris <rgm@gnu.org> |
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} | |||
| 304 | etags *.[ch] | 304 | etags *.[ch] |
| 305 | 305 | ||
| 306 | ../lib/libgnu.a: $(config_h) | 306 | ../lib/libgnu.a: $(config_h) |
| 307 | cd ../lib && $(MAKE) libgnu.a | 307 | $(MAKE) -C ../lib libgnu.a |
| 308 | 308 | ||
| 309 | regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h) | 309 | regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h) |
| 310 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/../src/regex.c | 310 | ${CC} -c ${CPP_CFLAGS} ${srcdir}/../src/regex.c |