Mercurial > pidgin.yaz
view pidgin/pixmaps/Makefile.mingw @ 21589:af5de2b08fe0
QuLogic submitted this patch a long time ago, References #2571. I believe
we need to do something for MSNP14 as well, but I haven't figured out
exactly what
author | Ka-Hing Cheung <khc@hxbc.us> |
---|---|
date | Mon, 19 Nov 2007 07:56:50 +0000 |
parents | 708b51ddddc4 |
children | 055e1abac7cf |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32 (mingw) version of Pidgin pixmaps # PIDGIN_TREE_TOP := ../.. include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak datadir := $(PIDGIN_INSTALL_DIR) include ./Makefile.am .PHONY: install clean install: if test '$(SUBDIRS)'; then \ list='$(SUBDIRS)'; for subdir in $$list; do \ $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1 ;\ done; \ fi; if test '$(nobase_dist_pidginpixmap_DATA)'; then \ list='$(nobase_dist_pidginpixmap_DATA)'; for file in $$list; do \ dir=`dirname $$file`; \ mkdir -p $(pidginpixmapdir)/$$dir; \ cp $$file $(pidginpixmapdir)/$$dir/; \ done; \ fi; if test '$(pidginbuttonpix_DATA)'; then \ mkdir -p $(pidginbuttonpixdir); \ cp $(pidginbuttonpix_DATA) $(pidginbuttonpixdir); \ fi; if test '$(pidgindistpix_DATA)'; then \ mkdir -p $(pidgindistpixdir); \ cp $(pidgindistpix_DATA) $(pidgindistpixdir); \ fi;