Remove useless comparison
[pidgin-git.git] / libpurple / protocols / Makefile.mingw
blobf8f0557a17a31b258e3b4f55b3e78eb39c0bbcf7
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 novell null oscar sametime silc simple bonjour
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;