Mercurial > pidgin
view libgaim/protocols/Makefile.mingw @ 15106:f41cd6f78c60
[gaim-migrate @ 17892]
Use GHashTable and GQueue instead of GSList in a few places in
oscar. The speed improvements probably won't be noticeable.
4 files changed, 48 insertions(+), 106 deletions(-)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 04 Dec 2006 11:14:11 +0000 |
parents | a02c29df922f |
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;