diff options
| author | Glenn Morris | 2011-05-25 00:13:57 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-05-25 00:13:57 -0700 |
| commit | 497c74cdc941776bfa6f736e74d7bc24934b9d75 (patch) | |
| tree | a11c89b8d7dfb5b414a77ee396b49f37e5326cbb | |
| parent | b9345dfd4b5479ec624f1870723a8ea5c9c719e7 (diff) | |
| download | emacs-497c74cdc941776bfa6f736e74d7bc24934b9d75.tar.gz emacs-497c74cdc941776bfa6f736e74d7bc24934b9d75.zip | |
* lib-src/Makefile.in (all, clean): Use $EXE_FILES.
| -rw-r--r-- | lib-src/ChangeLog | 1 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index d404518c077..f7ddd8f0eb2 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff): | 5 | (stamp-rcs2log, stamp-rcs-checkin, stamp-grep-changelog, stamp-vcdiff): |
| 6 | Use $insrcdir to suppress unaesthetic ignored errors. | 6 | Use $insrcdir to suppress unaesthetic ignored errors. |
| 7 | (clean): Simplify list of things to delete. | 7 | (clean): Simplify list of things to delete. |
| 8 | (all, clean): Use $EXE_FILES. | ||
| 8 | 9 | ||
| 9 | * Makefile.in (movemail${EXEEXT}): Build in one step, not via .o file. | 10 | * Makefile.in (movemail${EXEEXT}): Build in one step, not via .o file. |
| 10 | 11 | ||
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 2b9ef010e5e..f619febbb2b 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -178,7 +178,7 @@ CPP_CFLAGS = ${BASE_CFLAGS} ${PROFILING_CFLAGS} ${CPPFLAGS} ${CFLAGS} | |||
| 178 | LOADLIBES = ../lib/libgnu.a $(LIBS_SYSTEM) | 178 | LOADLIBES = ../lib/libgnu.a $(LIBS_SYSTEM) |
| 179 | $(EXE_FILES): ../lib/libgnu.a | 179 | $(EXE_FILES): ../lib/libgnu.a |
| 180 | 180 | ||
| 181 | all: ${DONT_INSTALL} ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS} | 181 | all: ${EXE_FILES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS} |
| 182 | 182 | ||
| 183 | ## These targets copy the scripts into the build directory so that | 183 | ## These targets copy the scripts into the build directory so that |
| 184 | ## they can be run from there in an uninstalled Emacs. | 184 | ## they can be run from there in an uninstalled Emacs. |
| @@ -275,7 +275,7 @@ mostlyclean: | |||
| 275 | -rm -f core *.o | 275 | -rm -f core *.o |
| 276 | 276 | ||
| 277 | clean: mostlyclean | 277 | clean: mostlyclean |
| 278 | -rm -f ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL} | 278 | -rm -f ${EXE_FILES} |
| 279 | -rm -f ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS} | 279 | -rm -f ${STAMP_INST_SCRIPTS} ${STAMP_SCRIPTS} |
| 280 | 280 | ||
| 281 | distclean: clean | 281 | distclean: clean |