Mercurial > pidgin
annotate src/Makefile.mingw @ 10836:9c52a83fc3ac
[gaim-migrate @ 12508]
You've found an easter egg, in print!
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Mon, 18 Apr 2005 17:06:44 +0000 |
parents | 6dcfec6f2f7c |
children | af2a4d5b9afe |
rev | line source |
---|---|
3638 | 1 # |
2 # Makefile.mingw | |
3 # | |
4 # Description: Makefile for win32 (mingw) version of Gaim | |
5 # | |
6 | |
7 # | |
8 # PATHS | |
9 # | |
10 | |
11 INCLUDE_DIR := . | |
12 GTK_TOP := ../../win32-dev/gtk_2_0 | |
13 GAIM_TOP := .. | |
14 GAIM_SRC := . | |
4858
748c25897809
[gaim-migrate @ 5185]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4710
diff
changeset
|
15 ASPELL_TOP := ../../win32-dev/aspell-dev-0-50-3-3 |
9565
c60809a33460
[gaim-migrate @ 10404]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
9136
diff
changeset
|
16 GTKSPELL_TOP := ../../win32-dev/gtkspell-2.0.6 |
4536
ba99d30afc14
[gaim-migrate @ 4815]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4524
diff
changeset
|
17 IDLETRACK_TOP := $(GAIM_TOP)/src/win32/IdleTracker |
3638 | 18 GAIM_INSTALL_DIR := $(GAIM_TOP)/win32-install-dir |
3969
020345f97ceb
[gaim-migrate @ 4153]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3947
diff
changeset
|
19 MINGW_PLUS_DIR := $(GAIM_SRC)/win32/mingw_plus |
8066
2bc75d98af8b
[gaim-migrate @ 8764]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7765
diff
changeset
|
20 NSS_DIR := ../../win32-dev/nss-3.9 |
2bc75d98af8b
[gaim-migrate @ 8764]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7765
diff
changeset
|
21 NSPR_DIR := ../../win32-dev/nspr-4.4.1 |
3638 | 22 |
23 ## | |
24 ## VARIABLE DEFINITIONS | |
25 ## | |
26 | |
27 TARGET = gaim | |
28 | |
29 # Compiler and Linker Options | |
30 | |
5932
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5746
diff
changeset
|
31 CFLAGS = |
3638 | 32 |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3638
diff
changeset
|
33 DEFINES = |
3638 | 34 |
8067
07c52184bca0
[gaim-migrate @ 8765]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
8066
diff
changeset
|
35 LDFLAGS = -mwindows |
3638 | 36 |
37 #-mconsole | |
38 #-mwindows | |
39 | |
10804 | 40 WINDRES := windres |
41 | |
3638 | 42 ## |
43 ## INCLUDE MAKEFILES | |
44 ## | |
45 | |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3638
diff
changeset
|
46 include $(GAIM_TOP)/src/win32/global.mak |
3638 | 47 |
48 ## | |
49 ## INCLUDE PATHS | |
50 ## | |
51 | |
52 INCLUDE_PATHS = -I$(INCLUDE_DIR) \ | |
53 -I$(INCLUDE_DIR)/win32 \ | |
3969
020345f97ceb
[gaim-migrate @ 4153]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3947
diff
changeset
|
54 -I$(MINGW_PLUS_DIR) \ |
4536
ba99d30afc14
[gaim-migrate @ 4815]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4524
diff
changeset
|
55 -I$(IDLETRACK_TOP) \ |
3638 | 56 -I$(GAIM_TOP) \ |
57 -I$(GTK_TOP)/include \ | |
58 -I$(GTK_TOP)/include/gtk-2.0 \ | |
59 -I$(GTK_TOP)/include/glib-2.0 \ | |
60 -I$(GTK_TOP)/include/pango-1.0 \ | |
61 -I$(GTK_TOP)/include/atk-1.0 \ | |
62 -I$(GTK_TOP)/lib/glib-2.0/include \ | |
63 -I$(GTK_TOP)/lib/gtk-2.0/include \ | |
3853
eddcb3a8c74e
[gaim-migrate @ 4005]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3826
diff
changeset
|
64 -I$(ASPELL_TOP)/include \ |
6795
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
65 -I$(GTKSPELL_TOP) \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
66 -I$(NSS_DIR)/include \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
67 -I$(NSPR_DIR)/include |
3638 | 68 |
69 | |
70 LIB_PATHS = -L$(GTK_TOP)/lib \ | |
71 -L$(GAIM_SRC) \ | |
4536
ba99d30afc14
[gaim-migrate @ 4815]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4524
diff
changeset
|
72 -L$(IDLETRACK_TOP) \ |
6795
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
73 -L$(ASPELL_TOP)/lib \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
74 -L$(NSS_DIR)/lib \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
75 -L$(NSPR_DIR)/lib |
3638 | 76 |
77 ## | |
78 ## SOURCES, OBJECTS | |
79 ## | |
80 | |
9753 | 81 DLL_C_SRC = \ |
5746
2c04c55222b7
[gaim-migrate @ 6171]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5486
diff
changeset
|
82 account.c \ |
2c04c55222b7
[gaim-migrate @ 6171]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5486
diff
changeset
|
83 accountopt.c \ |
5248 | 84 blist.c \ |
6853
63261dc7aa25
[gaim-migrate @ 7398]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6795
diff
changeset
|
85 buddyicon.c \ |
10686
212946f774c0
[gaim-migrate @ 12233]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10644
diff
changeset
|
86 cipher.c \ |
9136 | 87 cmds.c \ |
5746
2c04c55222b7
[gaim-migrate @ 6171]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5486
diff
changeset
|
88 connection.c \ |
3638 | 89 conversation.c \ |
90 core.c \ | |
5224
5160333a80df
[gaim-migrate @ 5594]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5042
diff
changeset
|
91 debug.c \ |
8279 | 92 eventloop.c \ |
3638 | 93 ft.c \ |
5746
2c04c55222b7
[gaim-migrate @ 6171]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5486
diff
changeset
|
94 gtkaccount.c \ |
5248 | 95 gtkblist.c \ |
5746
2c04c55222b7
[gaim-migrate @ 6171]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5486
diff
changeset
|
96 gtkconn.c \ |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4300
diff
changeset
|
97 gtkconv.c \ |
4363
65d98b565fbe
[gaim-migrate @ 4629]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
98 gtkcellrendererprogress.c \ |
5224
5160333a80df
[gaim-migrate @ 5594]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5042
diff
changeset
|
99 gtkdebug.c \ |
9709 | 100 gtkdialogs.c \ |
10297
ec140184437b
[gaim-migrate @ 11480]
Luke Schierer <lschiere@pidgin.im>
parents:
10295
diff
changeset
|
101 gtkdnd-hints.c \ |
8279 | 102 gtkeventloop.c \ |
4523
64d03b6a0864
[gaim-migrate @ 4801]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4489
diff
changeset
|
103 gtkft.c \ |
10297
ec140184437b
[gaim-migrate @ 11480]
Luke Schierer <lschiere@pidgin.im>
parents:
10295
diff
changeset
|
104 gtkgaim-disclosure.c \ |
3638 | 105 gtkimhtml.c \ |
8318 | 106 gtkimhtmltoolbar.c \ |
7434 | 107 gtklog.c \ |
10302 | 108 gtkmain.c \ |
5452 | 109 gtknotify.c \ |
5224
5160333a80df
[gaim-migrate @ 5594]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5042
diff
changeset
|
110 gtkplugin.c \ |
8718 | 111 gtkpluginpref.c \ |
5453 | 112 gtkpounce.c \ |
5452 | 113 gtkprefs.c \ |
6396
144aa76a1513
[gaim-migrate @ 6901]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6256
diff
changeset
|
114 gtkprivacy.c \ |
5486
d44a62911183
[gaim-migrate @ 5882]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5471
diff
changeset
|
115 gtkrequest.c \ |
8121 | 116 gtkroomlist.c \ |
10418 | 117 gtksavedstatuses.c \ |
5746
2c04c55222b7
[gaim-migrate @ 6171]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5486
diff
changeset
|
118 gtksound.c \ |
7369
be94c4be25b4
[gaim-migrate @ 7964]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7231
diff
changeset
|
119 gtksourceiter.c \ |
10644 | 120 gtkstatusbox.c \ |
10180 | 121 gtkstatusselector.c \ |
10297
ec140184437b
[gaim-migrate @ 11480]
Luke Schierer <lschiere@pidgin.im>
parents:
10295
diff
changeset
|
122 gtkstock.c \ |
10295
0cf2a686266e
[gaim-migrate @ 11474]
Luke Schierer <lschiere@pidgin.im>
parents:
10237
diff
changeset
|
123 gtkthemes.c \ |
4359
5fb47ec9bfe4
[gaim-migrate @ 4625]
Christian Hammond <chipx86@chipx86.com>
parents:
4300
diff
changeset
|
124 gtkutils.c \ |
3638 | 125 idle.c \ |
6984 | 126 imgstore.c \ |
4191
c626503ac2fc
[gaim-migrate @ 4422]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4127
diff
changeset
|
127 log.c \ |
8234
a2662eb5955b
[gaim-migrate @ 8957]
Christian Hammond <chipx86@chipx86.com>
parents:
8141
diff
changeset
|
128 network.c \ |
5452 | 129 notify.c \ |
5224
5160333a80df
[gaim-migrate @ 5594]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5042
diff
changeset
|
130 plugin.c \ |
8713 | 131 pluginpref.c \ |
4710
a912a14f99cf
[gaim-migrate @ 5021]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4556
diff
changeset
|
132 pounce.c \ |
3638 | 133 prefs.c \ |
6396
144aa76a1513
[gaim-migrate @ 6901]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6256
diff
changeset
|
134 privacy.c \ |
3638 | 135 proxy.c \ |
136 prpl.c \ | |
5486
d44a62911183
[gaim-migrate @ 5882]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5471
diff
changeset
|
137 request.c \ |
8121 | 138 roomlist.c \ |
10418 | 139 savedstatuses.c \ |
3638 | 140 server.c \ |
6494
4f93f10ddc75
[gaim-migrate @ 7009]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6396
diff
changeset
|
141 signals.c \ |
3638 | 142 sound.c \ |
6745
57a24492434b
[gaim-migrate @ 7277]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6577
diff
changeset
|
143 sslconn.c \ |
6068 | 144 status.c \ |
7765 | 145 stringref.c \ |
3638 | 146 util.c \ |
6577
ea785d055825
[gaim-migrate @ 7099]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6494
diff
changeset
|
147 value.c \ |
7137 | 148 xmlnode.c \ |
3638 | 149 win32/win32dep.c \ |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3638
diff
changeset
|
150 win32/MinimizeToTray.c \ |
3947
7cb474d8d613
[gaim-migrate @ 4126]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3905
diff
changeset
|
151 win32/libc_interface.c \ |
5006
1f27b4e54855
[gaim-migrate @ 5341]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4864
diff
changeset
|
152 win32/wspell.c \ |
1f27b4e54855
[gaim-migrate @ 5341]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4864
diff
changeset
|
153 win32/untar.c |
3638 | 154 |
155 RC_SRC = win32/gaimrc.rc | |
156 | |
4489 | 157 EXE_C_SRC = win_gaim.c |
3638 | 158 |
159 DLL_OBJECTS = $(DLL_C_SRC:%.c=%.o) | |
160 | |
161 EXE_OBJECTS = $(EXE_C_SRC:%.c=%.o) $(RC_SRC:%.rc=%.o) | |
162 | |
163 ## | |
164 ## LIBRARIES | |
165 ## | |
166 | |
4858
748c25897809
[gaim-migrate @ 5185]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4710
diff
changeset
|
167 DLL_LIBS = -lgtk-win32-2.0 \ |
8141 | 168 -latk-1.0 \ |
3638 | 169 -lpango-1.0 \ |
170 -lglib-2.0 \ | |
10237
2f6dcbaaabe0
[gaim-migrate @ 11373]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
10180
diff
changeset
|
171 -lgthread-2.0 \ |
3638 | 172 -lgdk-win32-2.0 \ |
173 -lgobject-2.0 \ | |
174 -lintl \ | |
175 -lgmodule-2.0 \ | |
176 -lgdk_pixbuf-2.0 \ | |
177 -lws2_32 \ | |
178 -liberty \ | |
179 -lwinmm \ | |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10418
diff
changeset
|
180 -lz \ |
6795
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
181 -lidletrack \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
182 -lnss3 \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
183 -lnspr4 \ |
40ba19133882
[gaim-migrate @ 7334]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6745
diff
changeset
|
184 -lssl3 |
3905
3e508dd31b76
[gaim-migrate @ 4058]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3853
diff
changeset
|
185 |
3638 | 186 |
6890
4eee806af511
[gaim-migrate @ 7436]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
6853
diff
changeset
|
187 EXE_LIBS = |
3638 | 188 |
189 ## | |
190 ## RULES | |
191 ## | |
192 | |
193 # How to make a C file | |
194 %.o: %.c | |
195 $(CC) $(CFLAGS) $(INCLUDE_PATHS) $(DEFINES) -c $< -o $@ | |
196 | |
197 # How to make an RC file | |
198 %.o: %.rc | |
10804 | 199 $(WINDRES) -i $< -o $@ |
3638 | 200 |
201 ## | |
202 ## TARGET DEFINITIONS | |
203 ## | |
204 | |
205 .PHONY: all clean | |
206 | |
207 all: $(TARGET).exe $(TARGET).dll | |
208 | |
9949 | 209 install: all |
3638 | 210 cp $(GAIM_SRC)/gaim.exe $(GAIM_SRC)/gaim.dll $(GAIM_INSTALL_DIR) |
211 | |
4536
ba99d30afc14
[gaim-migrate @ 4815]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4524
diff
changeset
|
212 $(IDLETRACK_TOP)/idletrack.dll: |
ba99d30afc14
[gaim-migrate @ 4815]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4524
diff
changeset
|
213 $(MAKE) -C $(IDLETRACK_TOP) -f Makefile.mingw |
3638 | 214 |
215 # | |
216 # BUILD DLL | |
217 # | |
218 | |
5932
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5746
diff
changeset
|
219 $(TARGET).lib $(TARGET).dll: $(DLL_OBJECTS) $(IDLETRACK_TOP)/idletrack.dll |
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5746
diff
changeset
|
220 $(CC) -shared $(DLL_OBJECTS) $(LIB_PATHS) $(DLL_LIBS) $(DLL_LD_FLAGS) -Wl,--out-implib,$(TARGET).lib -o $(TARGET).dll |
3638 | 221 |
222 # | |
223 # BUILD EXE | |
224 # | |
225 | |
5932
bb7723f0b4b9
[gaim-migrate @ 6372]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
5746
diff
changeset
|
226 $(TARGET).exe: $(TARGET).dll $(EXE_OBJECTS) |
3715
764d6f1848b2
[gaim-migrate @ 3848]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3638
diff
changeset
|
227 $(CC) $(LDFLAGS) $(EXE_OBJECTS) $(LIB_PATHS) $(EXE_LIBS) -o $(TARGET).exe |
3638 | 228 |
229 ## | |
230 ## CLEAN RULES | |
231 ## | |
232 | |
233 clean: | |
4536
ba99d30afc14
[gaim-migrate @ 4815]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
4524
diff
changeset
|
234 $(MAKE) -C $(IDLETRACK_TOP) -f Makefile.mingw clean |
3638 | 235 rm -rf *.o ./win32/*.o |
236 rm -rf $(TARGET).dll | |
237 rm -rf $(TARGET).lib | |
238 rm -rf $(TARGET).exe |