diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-05-29 19:48:42 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-05-29 19:48:42 +0300 |
commit | 38b787fa727fd98c3d61b9677a30e17d291d490c (patch) | |
tree | 2dd1206cdab3dd27718dd7a2ea7168e1bc0cd98b /lib-src | |
parent | 8e399682a1f6298e1315cf799f30335abac78e4a (diff) | |
download | emacs-38b787fa727fd98c3d61b9677a30e17d291d490c.tar.gz |
Remove *.res files in mostlyclean, to avoid problems with out-of-tree builds.
src/Makefile.in (mostlyclean): Remove *.res files.
lib-src/Makefile.in (mostlyclean): Remove *.res files.
nt/Makefile.in (emacs.res): Include srcdir when preprocessing
resources, for out-of-tree builds.
(mostlyclean): Remove *.res files.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/ChangeLog | 4 | ||||
-rw-r--r-- | lib-src/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index e565983e147..e1025fc5f6b 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,7 @@ +2013-05-29 Eli Zaretskii <eliz@gnu.org> + + * Makefile.in (mostlyclean): Remove *.res files. + 2013-05-18 Paul Eggert <eggert@cs.ucla.edu> Port --enable-gcc-warnings to clang. diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index e0acea867b7..f32333fe765 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -278,7 +278,7 @@ uninstall: fi mostlyclean: - -rm -f core *.o + -rm -f core *.o *.res clean: mostlyclean -rm -f ${EXE_FILES} |