view pixmaps/Makefile.mingw @ 4511:238e1dd2f1a7

[gaim-migrate @ 4787] Carl-Daniel Hailfinger (c-d_hailfinger) found that: "Current CVS with debug is unable to login to Gadu-Gadu. It establishes a TCP connection (which stays up until I quit Gaim), but throws following error: 'Could not log in. Connection impossible' (rough translation of german) '3838257 konnte sich nicht anmelden: Verbindung nicht mo'glich' " he then further took the time to provide a patch :-) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 03 Feb 2003 13:57:25 +0000
parents 5f0385678315
children bc494c4a3991
line wrap: on
line source

#
# Makefile.mingw
#
# Description: Makefile for win32 (mingw) version of Gaim pixmaps
#

datadir = ../win32-install-dir

include ./Makefile.am

install:
	if test '$(SUBDIRS)'; then \
	  list='$(SUBDIRS)'; for subdir in $$list; do \
	    $(MAKE) -C $$subdir -f Makefile.mingw install; \
	  done; \
	fi;
	if test '$(gaimbuttonpix_DATA)'; then \
	  mkdir -p $(gaimbuttonpixdir); \
	  cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \
	fi;
	if test '$(gaimdialogpix_DATA)'; then \
	  mkdir -p $(gaimdialogpixdir); \
	  cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \
	fi;
	if test '$(gaimmenupix_DATA)'; then \
	  mkdir -p $(gaimmenupixdir); \
	  cp $(gaimmenupix_DATA) $(gaimmenupixdir); \
	fi;
	if test '$(gaimdistpix_DATA)'; then \
	  mkdir -p $(gaimdistpixdir); \
	  cp $(gaimdistpix_DATA) $(gaimdistpixdir); \
	fi;
	if test '$(distpixmap_DATA)'; then \
	  mkdir -p $(distpixmapdir); \
	  cp $(distpixmap_DATA) $(distpixmapdir); \
	fi;