Mercurial > pidgin.yaz
changeset 15460:fafd7d4f8c50
More win32 pixmap build fixes.
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Mon, 29 Jan 2007 03:42:15 +0000 |
parents | fc61aa6bc571 |
children | 57c3c041b14e |
files | pidgin/pixmaps/animations/16/Makefile.mingw pidgin/pixmaps/animations/Makefile.am pidgin/pixmaps/animations/Makefile.mingw |
diffstat | 3 files changed, 38 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/animations/16/Makefile.mingw Mon Jan 29 03:42:15 2007 +0000 @@ -0,0 +1,20 @@ +# +# Makefile.mingw +# +# Description: Makefile for win32 (mingw) version of Pidgin pixmaps +# + +GAIM_TOP := ../../../.. +include $(GAIM_TOP)/libpurple/win32/global.mak + +datadir = $(GAIM_INSTALL_DIR) +include ./Makefile.am + +.PHONY: install + +install: + if test '$(pidginanimpix_DATA)'; then \ + mkdir -p $(pidginanimpixdir); \ + cp $(pidginanimpix_DATA) $(pidginanimpixdir); \ + fi; +
--- a/pidgin/pixmaps/animations/Makefile.am Mon Jan 29 03:36:59 2007 +0000 +++ b/pidgin/pixmaps/animations/Makefile.am Mon Jan 29 03:42:15 2007 +0000 @@ -1,1 +1,5 @@ SUBDIRS = 16 + +EXTRA_DIST = \ + Makefile.mingw \ + 16/Makefile.mingw
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/animations/Makefile.mingw Mon Jan 29 03:42:15 2007 +0000 @@ -0,0 +1,14 @@ +# +# Makefile.mingw +# +# Description: Makefile for win32 (mingw) version of Gaim pixmaps +# + +include ./Makefile.am + +install: + if test '$(SUBDIRS)'; then \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \ + done; \ + fi;