# HG changeset patch # User Daniel Atallah # Date 1170042135 0 # Node ID fafd7d4f8c50012826dc29f410e78413e8275846 # Parent fc61aa6bc571a8ee956a5f8a2fe81a38ae77318b More win32 pixmap build fixes. diff -r fc61aa6bc571 -r fafd7d4f8c50 pidgin/pixmaps/animations/16/Makefile.mingw --- /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; + diff -r fc61aa6bc571 -r fafd7d4f8c50 pidgin/pixmaps/animations/Makefile.am --- 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 diff -r fc61aa6bc571 -r fafd7d4f8c50 pidgin/pixmaps/animations/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;