libpurple/protocols/Makefile.mingw

Mon, 12 Oct 2009 05:01:17 +0000

author
Jason Cohen <kryojenik23-pidgin@steltek.com>
date
Mon, 12 Oct 2009 05:01:17 +0000
changeset 28660
db3b43e7fcea
parent 25875
a98b16817658
child 28911
e597c2ec96e3
permissions
-rw-r--r--

Handle adding Lotus Sametime and Microsoft OCS buddies to Yahoo! accounts.
Fixes #9814, #9983


committer: John Bailey <rekkanoryo@rekkanoryo.org>

# 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;

mercurial