applied changes from fb4435d514398a0b1febebe8bf46339e2c2b52b6
[pidgin-git.git] / libpurple / protocols / Makefile.mingw
blob8b6ca1a4edb511fdfc37bcc0c368ad41c0a14e4d
1 # Makefile.mingw
3 # Author: hermanator12002@yahoo.com
4 # Date 9/11/02
5 # Description: Protocols Makefile for win32 (mingw) port of libpurple
8 PIDGIN_TREE_TOP := ../..
9 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
11 SUBDIRS = gg irc jabber msn mxit novell null oscar sametime silc simple yahoo bonjour myspace
13 .PHONY: all install clean
15 all:
16         for subdir in $(SUBDIRS); do \
17                 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) || exit 1; \
18         done;
20 install: all
21         for subdir in $(SUBDIRS); do \
22                 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1; \
23         done;
25 clean:
26         for subdir in $(SUBDIRS); do \
27                 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) clean || exit 1; \
28         done;