Mercurial > pidgin.yaz
view libpurple/protocols/Makefile.mingw @ 15585:9cbf44d3c0f9
merge of 'a55d39e9c7d6bfdb22fd82eaa1510ba558caa72b'
and 'ce46e38b5be321a0427deaf9295a23267ad47893'
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Thu, 08 Feb 2007 12:35:14 +0000 |
parents | 0e17470b47c2 |
children | ded8da3de5f8 |
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)/libpurple/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;