Mercurial > pidgin
annotate Makefile.mingw @ 14064:fec4fadf30c9
[gaim-migrate @ 16683]
Minor adjustments.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Wed, 09 Aug 2006 18:19:12 +0000 |
parents | 88ccffe0875c |
children | c54ea2572de9 |
rev | line source |
---|---|
3630 | 1 # Makefile.mingw |
8615 | 2 # |
3630 | 3 # Author: hermanator12002@yahoo.com |
4 # Date 9/11/02 | |
5 # Description: Top Makefile for win32 (mingw) port of Gaim | |
6 # | |
7 | |
8 GAIM_SRC = ./src | |
9 GAIM_PROTOS = $(GAIM_SRC)/protocols | |
10 GAIM_PLUGINS = ./plugins | |
11 GAIM_PIXMAPS = ./pixmaps | |
4017
4cf1d0ff9f5f
[gaim-migrate @ 4217]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3967
diff
changeset
|
12 GAIM_SOUNDS = ./sounds |
3630 | 13 GAIM_INSTALL_DIR = ./win32-install-dir |
9565
c60809a33460
[gaim-migrate @ 10404]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
8675
diff
changeset
|
14 GTKSPELL_TOP = ../win32-dev/gtkspell-2.0.6/gtkspell |
13808
34d086c78a0d
[gaim-migrate @ 16234]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12707
diff
changeset
|
15 LIBXML2_DIR = ../win32-dev/libxml2 |
4537
741a18f2fb23
[gaim-migrate @ 4816]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4373
diff
changeset
|
16 IDLETRACK_TOP = $(GAIM_SRC)/win32/IdleTracker |
3920
1b3beae6c59c
[gaim-migrate @ 4085]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3905
diff
changeset
|
17 GTKRC_TOP = ../win32-dev/gtkrc |
3630 | 18 OSCAR = $(GAIM_PROTOS)/oscar |
19 YAHOO = $(GAIM_PROTOS)/yahoo | |
20 MSN = $(GAIM_PROTOS)/msn | |
21 TOC = $(GAIM_PROTOS)/toc | |
22 IRC = $(GAIM_PROTOS)/irc | |
23 JABBER = $(GAIM_PROTOS)/jabber | |
24 GG = $(GAIM_PROTOS)/gg | |
8675 | 25 NOVELL = $(GAIM_PROTOS)/novell |
10201
5e1ca11db043
[gaim-migrate @ 11319]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10185
diff
changeset
|
26 SILC = $(GAIM_PROTOS)/silc |
11578
8b955ffe9584
[gaim-migrate @ 13847]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11090
diff
changeset
|
27 SIMPLE = $(GAIM_PROTOS)/simple |
11090
af2a4d5b9afe
[gaim-migrate @ 13111]
Gary Kramlich <grim@reaperworld.com>
parents:
10804
diff
changeset
|
28 SAMETIME = $(GAIM_PROTOS)/sametime |
3630 | 29 PO = ./po |
30 | |
10804 | 31 MAKENSIS := makensis.exe |
32 | |
3967
cafc0968ea6b
[gaim-migrate @ 4151]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3963
diff
changeset
|
33 VERSION := $(shell cat ./VERSION) |
cafc0968ea6b
[gaim-migrate @ 4151]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3963
diff
changeset
|
34 |
6816
5aeba37b303c
[gaim-migrate @ 7356]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6795
diff
changeset
|
35 NEEDED_DLLS = $(GTKSPELL_TOP)/libgtkspell.dll \ |
13808
34d086c78a0d
[gaim-migrate @ 16234]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12707
diff
changeset
|
36 $(IDLETRACK_TOP)/idletrack.dll \ |
34d086c78a0d
[gaim-migrate @ 16234]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12707
diff
changeset
|
37 $(LIBXML2_DIR)/bin/libxml2.dll |
3630 | 38 |
10201
5e1ca11db043
[gaim-migrate @ 11319]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10185
diff
changeset
|
39 SOUNDS = $(GAIM_SOUNDS)/alert.wav \ |
10185 | 40 $(GAIM_SOUNDS)/login.wav \ |
41 $(GAIM_SOUNDS)/logout.wav \ | |
4017
4cf1d0ff9f5f
[gaim-migrate @ 4217]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3967
diff
changeset
|
42 $(GAIM_SOUNDS)/receive.wav \ |
10185 | 43 $(GAIM_SOUNDS)/send.wav |
4017
4cf1d0ff9f5f
[gaim-migrate @ 4217]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3967
diff
changeset
|
44 |
3630 | 45 |
46 ## | |
8615 | 47 ## Don't forget to change STATIC_PROTO_INIT, in config.h.mingw if you |
3630 | 48 ## change the status of a protocol (static/plugin) |
49 ## | |
50 | |
51 OSCAR_TYPE = PLUGIN | |
52 YAHOO_TYPE = PLUGIN | |
53 MSN_TYPE = PLUGIN | |
54 TOC_TYPE = PLUGIN | |
55 IRC_TYPE = PLUGIN | |
56 JABBER_TYPE = PLUGIN | |
57 GG_TYPE = PLUGIN | |
8675 | 58 NOVELL_TYPE = PLUGIN |
10201
5e1ca11db043
[gaim-migrate @ 11319]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10185
diff
changeset
|
59 SILC_TYPE = PLUGIN |
11578
8b955ffe9584
[gaim-migrate @ 13847]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11090
diff
changeset
|
60 SIMPLE_TYPE = PLUGIN |
11090
af2a4d5b9afe
[gaim-migrate @ 13111]
Gary Kramlich <grim@reaperworld.com>
parents:
10804
diff
changeset
|
61 SAMETIME_TYPE = PLUGIN |
3630 | 62 |
63 all: | |
64 cp config.h.mingw config.h | |
65 $(MAKE) TYPE='$(OSCAR_TYPE)' -C $(OSCAR) -f Makefile.mingw | |
66 $(MAKE) TYPE='$(YAHOO_TYPE)' -C $(YAHOO) -f Makefile.mingw | |
67 $(MAKE) TYPE='$(MSN_TYPE)' -C $(MSN) -f Makefile.mingw | |
68 $(MAKE) TYPE='$(IRC_TYPE)' -C $(IRC) -f Makefile.mingw | |
69 $(MAKE) TYPE='$(JABBER_TYPE)' -C $(JABBER) -f Makefile.mingw | |
70 $(MAKE) TYPE='$(GG_TYPE)' -C $(GG) -f Makefile.mingw | |
8675 | 71 $(MAKE) TYPE='$(NOVELL_TYPE)' -C $(NOVELL) -f Makefile.mingw |
10201
5e1ca11db043
[gaim-migrate @ 11319]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10185
diff
changeset
|
72 $(MAKE) TYPE='$(SILC_TYPE)' -C $(SILC) -f Makefile.mingw |
11578
8b955ffe9584
[gaim-migrate @ 13847]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11090
diff
changeset
|
73 $(MAKE) TYPE='$(SIMPLE_TYPE)' -C $(SIMPLE) -f Makefile.mingw |
12707
0438f853fc89
[gaim-migrate @ 15050]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12506
diff
changeset
|
74 $(MAKE) TYPE='$(SAMETIME_TYPE)' -C $(SAMETIME) -f Makefile.mingw |
4373
dcc6c130c6d9
[gaim-migrate @ 4639]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4363
diff
changeset
|
75 $(MAKE) -C $(GAIM_SRC) -f Makefile.mingw |
3630 | 76 $(MAKE) -C $(GAIM_PLUGINS) -f Makefile.mingw |
77 | |
78 | |
79 install: all | |
80 mkdir -p $(GAIM_INSTALL_DIR)/plugins | |
4017
4cf1d0ff9f5f
[gaim-migrate @ 4217]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3967
diff
changeset
|
81 mkdir -p $(GAIM_INSTALL_DIR)/sounds/gaim |
4319
13f41fc1fa8f
[gaim-migrate @ 4574]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4060
diff
changeset
|
82 $(MAKE) -C $(GAIM_PIXMAPS) -f Makefile.mingw install |
3630 | 83 $(MAKE) -C $(PO) -f Makefile.mingw install |
84 $(MAKE) -C $(GAIM_SRC) -f Makefile.mingw install | |
85 $(MAKE) -C $(GAIM_PLUGINS) -f Makefile.mingw install | |
86 $(MAKE) TYPE='$(OSCAR_TYPE)' -C $(OSCAR) -f Makefile.mingw install | |
87 $(MAKE) TYPE='$(YAHOO_TYPE)' -C $(YAHOO) -f Makefile.mingw install | |
88 $(MAKE) TYPE='$(MSN_TYPE)' -C $(MSN) -f Makefile.mingw install | |
89 $(MAKE) TYPE='$(IRC_TYPE)' -C $(IRC) -f Makefile.mingw install | |
90 $(MAKE) TYPE='$(JABBER_TYPE)' -C $(JABBER) -f Makefile.mingw install | |
91 $(MAKE) TYPE='$(GG_TYPE)' -C $(GG) -f Makefile.mingw install | |
8675 | 92 $(MAKE) TYPE='$(NOVELL_TYPE)' -C $(NOVELL) -f Makefile.mingw install |
10201
5e1ca11db043
[gaim-migrate @ 11319]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10185
diff
changeset
|
93 $(MAKE) TYPE='$(SILC_TYPE)' -C $(SILC) -f Makefile.mingw install |
11578
8b955ffe9584
[gaim-migrate @ 13847]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11090
diff
changeset
|
94 $(MAKE) TYPE='$(SIMPLE_TYPE)' -C $(SIMPLE) -f Makefile.mingw install |
12707
0438f853fc89
[gaim-migrate @ 15050]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
12506
diff
changeset
|
95 $(MAKE) TYPE='$(SAMETIME_TYPE)' -C $(SAMETIME) -f Makefile.mingw install |
3630 | 96 cp $(NEEDED_DLLS) $(GAIM_INSTALL_DIR) |
4017
4cf1d0ff9f5f
[gaim-migrate @ 4217]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3967
diff
changeset
|
97 cp $(SOUNDS) $(GAIM_INSTALL_DIR)/sounds/gaim |
3630 | 98 |
99 installer: | |
10804 | 100 $(MAKENSIS) /DGAIM_VERSION="$(VERSION)" /DWITH_GTK gaim-installer.nsi |
5384
0b544518a365
[gaim-migrate @ 5760]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4897
diff
changeset
|
101 |
0b544518a365
[gaim-migrate @ 5760]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4897
diff
changeset
|
102 installer_nogtk: |
10804 | 103 $(MAKENSIS) /DGAIM_VERSION="$(VERSION)" gaim-installer.nsi |
3630 | 104 |
5931
8b5dd7117f56
[gaim-migrate @ 6371]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5387
diff
changeset
|
105 installer_debug: |
10804 | 106 $(MAKENSIS) /DGAIM_VERSION="$(VERSION)" /DDEBUG gaim-installer.nsi |
5931
8b5dd7117f56
[gaim-migrate @ 6371]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5387
diff
changeset
|
107 |
5384
0b544518a365
[gaim-migrate @ 5760]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4897
diff
changeset
|
108 installers: installer installer_nogtk |
0b544518a365
[gaim-migrate @ 5760]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4897
diff
changeset
|
109 |
5931
8b5dd7117f56
[gaim-migrate @ 6371]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5387
diff
changeset
|
110 |
3630 | 111 clean: |
112 $(MAKE) -C $(PO) -f Makefile.mingw clean | |
113 $(MAKE) -C $(OSCAR) -f Makefile.mingw clean | |
114 $(MAKE) -C $(YAHOO) -f Makefile.mingw clean | |
115 $(MAKE) -C $(MSN) -f Makefile.mingw clean | |
116 $(MAKE) -C $(IRC) -f Makefile.mingw clean | |
117 $(MAKE) -C $(JABBER) -f Makefile.mingw clean | |
118 $(MAKE) -C $(GG) -f Makefile.mingw clean | |
8675 | 119 $(MAKE) -C $(NOVELL) -f Makefile.mingw clean |
10201
5e1ca11db043
[gaim-migrate @ 11319]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10185
diff
changeset
|
120 $(MAKE) -C $(SILC) -f Makefile.mingw clean |
11578
8b955ffe9584
[gaim-migrate @ 13847]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11090
diff
changeset
|
121 $(MAKE) -C $(SIMPLE) -f Makefile.mingw clean |
11090
af2a4d5b9afe
[gaim-migrate @ 13111]
Gary Kramlich <grim@reaperworld.com>
parents:
10804
diff
changeset
|
122 $(MAKE) -C $(SAMETIME) -f Makefile.mingw clean |
3630 | 123 $(MAKE) -C $(GAIM_SRC) -f Makefile.mingw clean |
124 $(MAKE) -C $(GAIM_PLUGINS) -f Makefile.mingw clean | |
125 rm -rf config.h $(GAIM_INSTALL_DIR) | |
3898
34292bf25e4d
[gaim-migrate @ 4050]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3896
diff
changeset
|
126 rm -rf gaim*.exe |