view libpurple/protocols/Makefile.mingw @ 30725:b6c3000eec60

Use GtkUIManager for gtk media stuff, since it's internal. applied changes from 7f3cdd61a34080056b8024a0297d01ed559bef25 through c9211cd8bf87478800560441c7eb893f1e3995e0 applied partial changes from 231d9237a777f9d01fa2ff9c26a575a0ac8db31c through d0c6c98ad725a3a64114bd1d5c1da1220d738c93
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Mon, 26 Jul 2010 04:21:47 +0000
parents 8fd66bebe492
children 81a2ec76c285
line wrap: on
line source

# Makefile.mingw
#
# Author: hermanator12002@yahoo.com
# Date 9/11/02
# Description: Protocols Makefile for win32 (mingw) port of libpurple
#

PIDGIN_TREE_TOP := ../..
include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak

SUBDIRS = gg irc jabber msn mxit novell null oscar qq sametime silc simple yahoo bonjour myspace

.PHONY: all install clean

all:
	for subdir in $(SUBDIRS); do \
		$(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) || exit 1; \
	done;

install: all
	for subdir in $(SUBDIRS); do \
		$(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1; \
	done;

clean:
	for subdir in $(SUBDIRS); do \
		$(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) clean || exit 1; \
	done;