diff options
author | Glenn Morris <rgm@gnu.org> | 2014-11-22 13:32:34 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-11-22 13:32:34 -0800 |
commit | cc252fc141482e64f8824967449f1076a6feb540 (patch) | |
tree | 5106198bae8d0c185c541449312bd470d49b3219 /nt | |
parent | 9a8482589210016999a5fc3d9f18be74190756f9 (diff) | |
download | emacs-cc252fc141482e64f8824967449f1076a6feb540.tar.gz |
Add some .ico dependencies to Makefile .res rules
* lib-src/Makefile.in (emacsclient.res): Add dependency on icons/emacs.ico.
* nt/Makefile.in (emacs.res): Add dependency on icons/hand.cur.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 4 | ||||
-rw-r--r-- | nt/Makefile.in | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 457d97c5257..49ef65afe6e 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,7 @@ +2014-11-22 Glenn Morris <rgm@gnu.org> + + * Makefile.in (emacs.res): Add dependency on icons/hand.cur. + 2014-11-18 Glenn Morris <rgm@gnu.org> * Makefile.in (addpm${EXEEXT}, ddeclient${EXEEXT}) diff --git a/nt/Makefile.in b/nt/Makefile.in index 63bef288ae3..c456d55e4f8 100644 --- a/nt/Makefile.in +++ b/nt/Makefile.in @@ -225,5 +225,6 @@ cmdproxy${EXEEXT}: ${srcdir}/cmdproxy.c runemacs${EXEEXT}: ${srcdir}/runemacs.c $(EMACSRES) $(CC) ${ALL_CFLAGS} $^ -mwindows -o $@ -emacs.res: ${srcdir}/emacs.rc ${srcdir}/icons/emacs.ico ${srcdir}/$(EMACS_MANIFEST) +emacs.res: ${srcdir}/emacs.rc ${srcdir}/icons/emacs.ico \ + ${srcdir}/icons/hand.cur ${srcdir}/$(EMACS_MANIFEST) ${WINDRES} -I ${srcdir} -O coff -o $@ $< |