view libgaim/protocols/Makefile.mingw @ 14825:a02c29df922f

[gaim-migrate @ 17592] Enable QQ in wingaim. I don't really have a way to test it. Also disable some debug stuff in the about screen that doesn't make sense in wingaim. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Sat, 28 Oct 2006 00:28:06 +0000
parents 5d03b309b482
children
line wrap: on
line source

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

GAIM_TOP := ../..
include $(GAIM_TOP)/libgaim/win32/global.mak

SUBDIRS = gg irc jabber msn novell oscar qq sametime silc simple yahoo

.PHONY: all install clean

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

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

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