Wed, 06 Feb 2008 18:06:44 +0000
Simplified version of the newest patch on #4533 to not try Yahoo protocol
version 15 file transfer on Yahoo Japan.
| 14294 | 1 | # Makefile.mingw |
| 2 | # | |
| 3 | # Author: hermanator12002@yahoo.com | |
| 4 | # Date 9/11/02 | |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
5 | # Description: Protocols Makefile for win32 (mingw) port of LibPurple |
| 14294 | 6 | # |
| 7 | ||
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
8 | PIDGIN_TREE_TOP := ../.. |
|
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
9 | include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak |
| 14294 | 10 | |
|
21620
431153ce049b
Use MSNP9 on win32 as well.
Daniel Atallah <datallah@pidgin.im>
parents:
19684
diff
changeset
|
11 | SUBDIRS = gg irc jabber msnp9 novell null oscar qq sametime silc simple yahoo bonjour myspace |
| 14294 | 12 | |
|
14638
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14377
diff
changeset
|
13 | .PHONY: all install clean |
|
b0fa76dac93f
[gaim-migrate @ 17300]
Daniel Atallah <datallah@pidgin.im>
parents:
14377
diff
changeset
|
14 | |
| 14294 | 15 | all: |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
16 | for subdir in $(SUBDIRS); do \ |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
17 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) || exit 1; \ |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
18 | done; |
| 14294 | 19 | |
| 20 | install: all | |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
21 | for subdir in $(SUBDIRS); do \ |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
22 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1; \ |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
23 | done; |
| 14294 | 24 | |
| 25 | clean: | |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
26 | for subdir in $(SUBDIRS); do \ |
|
16100
a0ab70986c10
This should get all the Win32 Makefiles in line with
Kevin Stange <kstange@pidgin.im>
parents:
15438
diff
changeset
|
27 | $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) clean || exit 1; \ |
|
14887
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
28 | done; |
|
067f351ad90a
[gaim-migrate @ 17592]
Daniel Atallah <datallah@pidgin.im>
parents:
14638
diff
changeset
|
29 |