view libpurple/protocols/Makefile.mingw @ 20357:d8a47f12a3c4

applied changes from c6a89223516b0abb6cbb399c2066e3b6a7b69d19 through 63a37bce425022f4c52fab82e7169ed73f50a49e applied changes from 63a37bce425022f4c52fab82e7169ed73f50a49e through 8d61a119c53ac77e595d5ec300d30482b914bdf7 applied changes from 8d61a119c53ac77e595d5ec300d30482b914bdf7 through 300feed94260af48cd2026be3fd424eeb742fb77 applied changes from 300feed94260af48cd2026be3fd424eeb742fb77 through 39954083d38f554f75dac0d4fe8b2f7bac3cd0c8
author Luke Schierer <lschiere@pidgin.im>
date Sun, 21 Oct 2007 04:59:23 +0000
parents 9683da821d15
children e8d80d18df30
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 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;