forked from heliocastro/qt1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
373 lines (256 loc) · 8.5 KB
/
Makefile
File metadata and controls
373 lines (256 loc) · 8.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# -*- makefile -*-
#
# Main Makefile for building the Qt library, examples and tutorial.
# Read PORTING for instructions how to port Qt to a new platform.
all: moc src tutorial examples
@echo
@echo "The Qt library is now built in ./lib"
@echo "The Qt examples are built in the directories in ./examples"
@echo "The Qt tutorials are built in the directories in ./tutorial"
@echo
@echo "Enjoy! - the Troll Tech team"
@echo
moc: variables FORCE
cd src/moc; $(MAKE)
cp src/moc/moc bin/moc
src: moc variables FORCE
cd $@; $(MAKE)
tutorial examples: src FORCE
cd $@; $(MAKE)
clean:
-rm variables
cd src/moc; $(MAKE) clean
cd src; $(MAKE) clean
cd tutorial; $(MAKE) clean
cd examples; $(MAKE) clean
depend:
cd src; $(MAKE) depend
cd tutorial; $(MAKE) depend
cd examples; $(MAKE) depend
config: variables
-rm variables
$(MAKE)
variables: Makefile
@echo
@echo These targets are available:
@echo
@ls configs
@echo
@echo Make any of them to configure Qt for building.
@echo
@echo 'Please note that the GIF image reading functionality in Qt is disabled'
@echo 'by default. If you want to enable it, see the file src/kernel/qt_gif.h'
@echo
@echo 'To configure Qt for building, select a target from the list above that'
@echo 'matches your system and desired configuration, and give the command'
@echo ' make <your-selected-target>'
@echo
@echo 'This make process will now abort with an error message; this is normal'
@echo 'Simply proceed as described.'
@echo
@exit 1
# individual targets
%: configs/%
./propagate configs/$*
aix-g++-static: Makefile
./propagate configs/aix-g++-static
aix-g++-static-debug: Makefile
./propagate configs/aix-g++-static-debug
aix-xlc-shared: Makefile
./propagate configs/aix-xlc-shared
aix-xlc-shared-debug: Makefile
./propagate configs/aix-xlc-shared-debug
aix-xlc-static: Makefile
./propagate configs/aix-xlc-static
aix-xlc-static-debug: Makefile
./propagate configs/aix-xlc-static-debug
bsdi-g++-shared: Makefile
./propagate configs/bsdi-g++-shared
bsdi-g++-shared-debug: Makefile
./propagate configs/bsdi-g++-shared-debug
bsdi-g++-static: Makefile
./propagate configs/bsdi-g++-static
bsdi-g++-static-debug: Makefile
./propagate configs/bsdi-g++-static-debug
dgux-g++-shared: Makefile
./propagate configs/dgux-g++-shared
dgux-g++-shared-debug: Makefile
./propagate configs/dgux-g++-shared-debug
dgux-g++-static: Makefile
./propagate configs/dgux-g++-static
dgux-g++-static-debug: Makefile
./propagate configs/dgux-g++-static-debug
freebsd-g++-shared: Makefile
./propagate configs/freebsd-g++-shared
freebsd-g++-shared-debug: Makefile
./propagate configs/freebsd-g++-shared-debug
freebsd-g++-static: Makefile
./propagate configs/freebsd-g++-static
freebsd-g++-static-debug: Makefile
./propagate configs/freebsd-g++-static-debug
gnu-g++-shared: Makefile
./propagate configs/gnu-g++-shared
gnu-g++-shared-debug: Makefile
./propagate configs/gnu-g++-shared-debug
gnu-g++-static: Makefile
./propagate configs/gnu-g++-static
gnu-g++-static-debug: Makefile
./propagate configs/gnu-g++-static-debug
hpux-acc-shared: Makefile
./propagate configs/hpux-acc-shared
hpux-acc-shared-debug: Makefile
./propagate configs/hpux-acc-shared-debug
hpux-acc-static: Makefile
./propagate configs/hpux-acc-static
hpux-acc-static-debug: Makefile
./propagate configs/hpux-acc-static-debug
hpux-cc-shared: Makefile
./propagate configs/hpux-cc-shared
hpux-cc-shared-debug: Makefile
./propagate configs/hpux-cc-shared-debug
hpux-cc-static: Makefile
./propagate configs/hpux-cc-static
hpux-cc-static-debug: Makefile
./propagate configs/hpux-cc-static-debug
hpux-g++-shared: Makefile
./propagate configs/hpux-g++-shared
hpux-g++-shared-debug: Makefile
./propagate configs/hpux-g++-shared-debug
hpux-g++-static: Makefile
./propagate configs/hpux-g++-static
hpux-g++-static-debug: Makefile
./propagate configs/hpux-g++-static-debug
irix-64-shared: Makefile
./propagate configs/irix-64-shared
irix-64-shared-debug: Makefile
./propagate configs/irix-64-shared-debug
irix-64-static: Makefile
./propagate configs/irix-64-static
irix-64-static-debug: Makefile
./propagate configs/irix-64-static-debug
irix-dcc-shared: Makefile
./propagate configs/irix-dcc-shared
irix-dcc-shared-debug: Makefile
./propagate configs/irix-dcc-shared-debug
irix-dcc-static: Makefile
./propagate configs/irix-dcc-static
irix-dcc-static-debug: Makefile
./propagate configs/irix-dcc-static-debug
irix-g++-shared: Makefile
./propagate configs/irix-g++-shared
irix-g++-shared-debug: Makefile
./propagate configs/irix-g++-shared-debug
irix-g++-static: Makefile
./propagate configs/irix-g++-static
irix-g++-static-debug: Makefile
./propagate configs/irix-g++-static-debug
irix-n32-shared: Makefile
./propagate configs/irix-n32-shared
irix-n32-shared-debug: Makefile
./propagate configs/irix-n32-shared-debug
irix-n32-static: Makefile
./propagate configs/irix-n32-static
irix-n32-static-debug: Makefile
./propagate configs/irix-n32-static-debug
irix-o32-shared: Makefile
./propagate configs/irix-o32-shared
irix-o32-shared-debug: Makefile
./propagate configs/irix-o32-shared-debug
irix-o32-static: Makefile
./propagate configs/irix-o32-static
irix-o32-static-debug: Makefile
./propagate configs/irix-o32-static-debug
linux-g++-shared: Makefile
./propagate configs/linux-g++-shared
linux-g++-shared-debug: Makefile
./propagate configs/linux-g++-shared-debug
linux-g++-static: Makefile
./propagate configs/linux-g++-static
linux-g++-static-debug: Makefile
./propagate configs/linux-g++-static-debug
netbsd-g++-shared: Makefile
./propagate configs/netbsd-g++-shared
netbsd-g++-shared-debug: Makefile
./propagate configs/netbsd-g++-shared-debug
netbsd-g++-static: Makefile
./propagate configs/netbsd-g++-static
netbsd-g++-static-debug: Makefile
./propagate configs/netbsd-g++-static-debug
openbsd-g++-shared: Makefile
./propagate configs/openbsd-g++-shared
openbsd-g++-shared-debug: Makefile
./propagate configs/openbsd-g++-shared-debug
openbsd-g++-static: Makefile
./propagate configs/openbsd-g++-static
openbsd-g++-static-debug: Makefile
./propagate configs/openbsd-g++-static-debug
osf1-cxx-shared: Makefile
./propagate configs/osf1-cxx-shared
osf1-cxx-shared-debug: Makefile
./propagate configs/osf1-cxx-shared-debug
osf1-cxx-static: Makefile
./propagate configs/osf1-cxx-static
osf1-cxx-static-debug: Makefile
./propagate configs/osf1-cxx-static-debug
osf1-g++-shared: Makefile
./propagate configs/osf1-g++-shared
osf1-g++-shared-debug: Makefile
./propagate configs/osf1-g++-shared-debug
osf1-g++-static: Makefile
./propagate configs/osf1-g++-static
osf1-g++-static-debug: Makefile
./propagate configs/osf1-g++-static-debug
qnx-g++-shared: Makefile
./propagate configs/qnx-g++-shared
qnx-g++-shared-debug: Makefile
./propagate configs/qnx-g++-shared-debug
qnx-g++-static: Makefile
./propagate configs/qnx-g++-static
qnx-g++-static-debug: Makefile
./propagate configs/qnx-g++-static-debug
sco-g++-shared: Makefile
./propagate configs/sco-g++-shared
sco-g++-shared-debug: Makefile
./propagate configs/sco-g++-shared-debug
sco-g++-static: Makefile
./propagate configs/sco-g++-static
sco-g++-static-debug: Makefile
./propagate configs/sco-g++-static-debug
solaris-cc-shared: Makefile
./propagate configs/solaris-cc-shared
solaris-cc-shared-debug: Makefile
./propagate configs/solaris-cc-shared-debug
solaris-cc-static: Makefile
./propagate configs/solaris-cc-static
solaris-cc-static-debug: Makefile
./propagate configs/solaris-cc-static-debug
solaris-g++-shared: Makefile
./propagate configs/solaris-g++-shared
solaris-g++-shared-debug: Makefile
./propagate configs/solaris-g++-shared-debug
solaris-g++-static: Makefile
./propagate configs/solaris-g++-static
solaris-g++-static-debug: Makefile
./propagate configs/solaris-g++-static-debug
sunos-g++-shared: Makefile
./propagate configs/sunos-g++-shared
sunos-g++-shared-debug: Makefile
./propagate configs/sunos-g++-shared-debug
sunos-g++-static: Makefile
./propagate configs/sunos-g++-static
sunos-g++-static-debug: Makefile
./propagate configs/sunos-g++-static-debug
ultrix-g++-static: Makefile
./propagate configs/ultrix-g++-static
ultrix-g++-static-debug: Makefile
./propagate configs/ultrix-g++-static-debug
unixware-g++-shared: Makefile
./propagate configs/unixware-g++-shared
unixware-g++-shared-debug: Makefile
./propagate configs/unixware-g++-shared-debug
unixware-g++-static: Makefile
./propagate configs/unixware-g++-static
unixware-g++-static-debug: Makefile
./propagate configs/unixware-g++-static-debug
dep: depend
FORCE: