view pidgin/pixmaps/emotes/Makefile.mingw @ 20914:74ec24deb267

Patch from Will Hawkins for some cleanup of the SIMPLE notify message processing. This should hopefully fix some cases when a user signs off but we don't notice. Fixes #3507.
author Daniel Atallah <daniel.atallah@gmail.com>
date Sat, 13 Oct 2007 16:36:06 +0000
parents 46629aab70b1
children
line wrap: on
line source

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

include ./Makefile.am

.PHONY: install clean

install:
	if test '$(SUBDIRS)'; then \
	  list='$(SUBDIRS)'; for subdir in $$list; do \
	    $(MAKE) -C $$subdir -f Makefile.mingw install || exit 1; \
	  done; \
	fi;

clean:
	if test '$(SUBDIRS)'; then \
	  list='$(SUBDIRS)'; for subdir in $$list; do \
	    $(MAKE) -C $$subdir -f Makefile.mingw clean || exit 1; \
	  done; \
	fi;