3 # Author: hermanator12002@yahoo.com
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 novell null oscar sametime silc simple bonjour
13 .PHONY: all install clean
16 for subdir in $(SUBDIRS); do \
17 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) || exit 1; \
21 for subdir in $(SUBDIRS); do \
22 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1; \
26 for subdir in $(SUBDIRS); do \
27 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) clean || exit 1; \