libgaim/protocols/Makefile.mingw

Sat, 28 Oct 2006 00:28:06 +0000

author
Daniel Atallah <datallah@pidgin.im>
date
Sat, 28 Oct 2006 00:28:06 +0000
changeset 14887
067f351ad90a
parent 14638
b0fa76dac93f
permissions
-rw-r--r--

[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.

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

mercurial