Subversion Repositories shark

Rev

Rev 968 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
#
2
# this file contains the library dependencies
3
#
4
 
45 pj 5
OSLIB_LIB=$(OSLIB)/lib
2 pj 6
 
45 pj 7
LINK_STARTUP = $(OSLIB_LIB)/x0.o
2 pj 8
 
9
LINK_LIB =
10
LIB_DEP =
11
 
107 pj 12
 
13
# Dependencies
14
# -------------------------------------------------------
15
 
16
# these are the libraries the use wants to use
17
USELIB = $(SHARKOPT)
18
 
19
ifeq ($(findstring __PNG__,$(SHARKOPT)) , __PNG__)
20
USELIB += __ZLIB__
21
endif
22
 
638 giacomo 23
INCL += -I$(BASE)/drivers/linuxc26/include
24
 
588 giacomo 25
# PCI
431 giacomo 26
# ----------------------------------------------------------------
588 giacomo 27
ifeq ($(findstring __PCI__,$(USELIB)) , __PCI__)
431 giacomo 28
 
638 giacomo 29
INCL += -I$(BASE)/drivers/pci/include
431 giacomo 30
 
588 giacomo 31
ifeq ($(LIB_PATH)/libpci.a,$(wildcard $(LIB_PATH)/libpci.a))
32
LINK_LIB += -lpci
33
LIB_DEP += $(LIB_PATH)/libpci.a
431 giacomo 34
endif
35
 
632 giacomo 36
endif
37
 
638 giacomo 38
# NETWORK
39
# ----------------------------------------------------------------
40
ifeq ($(findstring __NET__,$(USELIB)) , __NET__)
41
 
42
INCL += -I$(BASE)/drivers/net/include
43
 
44
ifeq ($(LIB_PATH)/libnet.a,$(wildcard $(LIB_PATH)/libnet.a))
45
LINK_LIB += -lnet
46
LIB_DEP += $(LIB_PATH)/libnet.a
581 mauro 47
endif
48
 
638 giacomo 49
endif
50
 
431 giacomo 51
# tracer
52
ifeq ($(LIB_PATH)/libtracer.a,$(wildcard $(LIB_PATH)/libtracer.a))
53
LINK_LIB += -ltracer
54
LIB_DEP += $(LIB_PATH)/libtracer.a
55
endif
56
 
2 pj 57
# hgd
58
ifeq ($(LIB_PATH)/libhgd.a,$(wildcard $(LIB_PATH)/libhgd.a))
59
LINK_LIB += -lhgd
60
LIB_DEP += $(LIB_PATH)/libhgd.a
61
endif
62
 
63
# grx
110 giacomo 64
# ----------------------------------------------------------------
65
ifeq ($(findstring __GRX__,$(USELIB)) , __GRX__)
66
 
67
INCL += -I$(BASE)/drivers/grx/include
68
 
2 pj 69
ifeq ($(LIB_PATH)/libgrx.a,$(wildcard $(LIB_PATH)/libgrx.a))
70
LINK_LIB += -lgrx
71
LIB_DEP += $(LIB_PATH)/libgrx.a
72
endif
110 giacomo 73
 
48 pj 74
endif
2 pj 75
 
471 giacomo 76
# Frame Buffer
77
# ----------------------------------------------------------------
78
ifeq ($(findstring __FB__,$(USELIB)) , __FB__)
79
 
638 giacomo 80
INCL += -I$(BASE)/drivers/fb/include
471 giacomo 81
 
82
ifeq ($(LIB_PATH)/libfb.a,$(wildcard $(LIB_PATH)/libfb.a))
83
LINK_LIB += -lfb
84
LIB_DEP += $(LIB_PATH)/libfb.a
85
endif
86
 
87
endif
110 giacomo 88
 
107 pj 89
# oldchar
90
# ----------------------------------------------------------------
91
ifeq ($(findstring __OLDCHAR__,$(USELIB)) , __OLDCHAR__)
92
 
93
INCL += -I$(BASE)/drivers/oldchar/include
94
 
95
ifeq ($(LIB_PATH)/liboldch.a,$(wildcard $(LIB_PATH)/liboldch.a))
96
LINK_LIB += -loldch
97
LIB_DEP += $(LIB_PATH)/liboldch.a
2 pj 98
endif
99
 
107 pj 100
endif
101
 
2 pj 102
# hsnd
103
ifeq ($(LIB_PATH)/libhsnd.a,$(wildcard $(LIB_PATH)/libhsnd.a))
104
LINK_LIB += -lhsnd
105
LIB_DEP += $(LIB_PATH)/libhsnd.a
106
endif
107
 
108
# mem
109
ifeq ($(LIB_PATH)/libmem.a,$(wildcard $(LIB_PATH)/libmem.a))
110
LINK_LIB += -lmem
111
LIB_DEP += $(LIB_PATH)/libmem.a
112
endif
113
 
114
# gkern
115
ifeq ($(LIB_PATH)/libgkern.a,$(wildcard $(LIB_PATH)/libgkern.a))
116
LINK_LIB += -lgkern
117
LIB_DEP += $(LIB_PATH)/libgkern.a
118
endif
119
 
120
# mod
121
ifeq ($(LIB_PATH)/libmod.a,$(wildcard $(LIB_PATH)/libmod.a))
122
LINK_LIB += -lmod
123
LIB_DEP += $(LIB_PATH)/libmod.a
124
endif
125
 
126
# kl
45 pj 127
ifeq ($(OSLIB_LIB)/libkl.a,$(wildcard $(OSLIB_LIB)/libkl.a))
2 pj 128
LINK_LIB += -lkl
45 pj 129
LIB_DEP += $(OSLIB_LIB)/libkl.a
2 pj 130
endif
131
 
132
# hx
45 pj 133
ifeq ($(OSLIB_LIB)/libhx.a,$(wildcard $(OSLIB_LIB)/libhx.a))
2 pj 134
LINK_LIB += -lhx
45 pj 135
LIB_DEP += $(OSLIB_LIB)/libhx.a
2 pj 136
endif
137
 
138
# hc
45 pj 139
ifeq ($(OSLIB_LIB)/libhc.a,$(wildcard $(OSLIB_LIB)/libhc.a))
2 pj 140
LINK_LIB += -lhc
45 pj 141
LIB_DEP += $(OSLIB_LIB)/libhc.a
2 pj 142
endif
143
 
144
# hm
45 pj 145
ifeq ($(OSLIB_LIB)/libhm.a,$(wildcard $(OSLIB_LIB)/libhm.a))
2 pj 146
LINK_LIB += -lhm
45 pj 147
LIB_DEP += $(OSLIB_LIB)/libhm.a
2 pj 148
endif
149
 
45 pj 150
# cons
151
ifeq ($(LIB_PATH)/libcons.a,$(wildcard $(LIB_PATH)/libcons.a))
556 giacomo 152
 
153
INCL += -I$(BASE)/drivers/cons/include
154
 
45 pj 155
LINK_LIB += -lcons
156
LIB_DEP += $(LIB_PATH)/libcons.a
157
endif
158
 
2 pj 159
# blk
160
ifeq ($(LIB_PATH)/libblk.a,$(wildcard $(LIB_PATH)/libblk.a))
161
LINK_LIB += -lblk
162
LIB_DEP += $(LIB_PATH)/libblk.a
163
endif
164
 
165
# fs
1038 tullio 166
ifeq ($(findstring YES,$(SHARK_FS)) , YES)
2 pj 167
ifeq ($(LIB_PATH)/libfs.a,$(wildcard $(LIB_PATH)/libfs.a))
168
LINK_LIB += -lfs
169
LIB_DEP += $(LIB_PATH)/libfs.a
170
endif
1038 tullio 171
endif
2 pj 172
 
173
# c
174
ifeq ($(LIB_PATH)/libc.a,$(wildcard $(LIB_PATH)/libc.a))
175
LINK_LIB += -lc
176
LIB_DEP += $(LIB_PATH)/libc.a
177
endif
178
 
719 mauro 179
# serial
180
ifeq ($(LIB_PATH)/libserial.a,$(wildcard $(LIB_PATH)/libserial.a))
767 cirinei 181
INCL += -I$(BASE)/drivers/serial/include
719 mauro 182
LINK_LIB += -lserial
183
LIB_DEP += $(LIB_PATH)/libserial.a
184
endif
185
 
632 giacomo 186
# Linux Comp 2.6
496 giacomo 187
# ----------------------------------------------------------------
188
ifeq ($(findstring __LINUXC26__,$(USELIB)) , __LINUXC26__)
189
 
190
# Linux Emulation Layer 2.6
191
ifeq ($(LIB_PATH)/libcomp26.a,$(wildcard $(LIB_PATH)/libcomp26.a))
192
LINK_LIB += -lcomp26
193
LIB_DEP += $(LIB_PATH)/libcomp26.a
194
endif
195
 
2 pj 196
endif
496 giacomo 197
# ----------------------------------------------------------------
439 giacomo 198
 
2 pj 199
# mpeg
200
ifeq ($(LIB_PATH)/libmpeg.a,$(wildcard $(LIB_PATH)/libmpeg.a))
201
LINK_LIB += -lmpeg
202
LIB_DEP += $(LIB_PATH)/libmpeg.a
203
endif
204
 
205
# mp3
206
ifeq ($(LIB_PATH)/libmp3.a,$(wildcard $(LIB_PATH)/libmp3.a))
207
LINK_LIB += -lmp3
208
LIB_DEP += $(LIB_PATH)/libmp3.a
209
endif
210
 
702 giacomo 211
# snapshot
212
ifeq ($(findstring __SNAPSHOT__,$(USELIB)) , __SNAPSHOT__)
213
 
214
INCL += -I$(BASE)/ports/snapshot/include
215
 
216
ifeq ($(LIB_PATH)/libsnapshot.a,$(wildcard $(LIB_PATH)/libsnapshot.a))
217
LINK_LIB += -lsnapshot
218
LIB_DEP += $(LIB_PATH)/libsnapshot.a
219
endif
220
 
221
endif
222
 
2 pj 223
# 6025e
107 pj 224
# ----------------------------------------------------------------
225
ifeq ($(findstring __6025E__,$(USELIB)) , __6025E__)
226
 
227
INCL += -I$(BASE)/drivers/pci6025e/include
228
 
2 pj 229
ifeq ($(LIB_PATH)/lib6025e.a,$(wildcard $(LIB_PATH)/lib6025e.a))
230
LINK_LIB += -l6025e
231
LIB_DEP += $(LIB_PATH)/lib6025e.a
232
endif
233
 
107 pj 234
endif
235
 
659 giacomo 236
# PCL833
237
# ----------------------------------------------------------------
238
ifeq ($(findstring __PCL833__,$(USELIB)) , __PCL833__)
239
 
240
INCL += -I$(BASE)/drivers/pcl833/include
241
 
242
ifeq ($(LIB_PATH)/libpcl833.a,$(wildcard $(LIB_PATH)/libpcl833.a))
243
LINK_LIB += -lpcl833
244
LIB_DEP += $(LIB_PATH)/libpcl833.a
245
endif
246
 
247
endif
248
 
23 pj 249
# Parport
107 pj 250
# ----------------------------------------------------------------
251
ifeq ($(findstring __PPORT__,$(USELIB)) , __PPORT__)
252
 
253
INCL += -I$(BASE)/drivers/parport/include
254
 
23 pj 255
ifeq ($(LIB_PATH)/libpport.a,$(wildcard $(LIB_PATH)/libpport.a))
256
LINK_LIB += -lpport
257
LIB_DEP += $(LIB_PATH)/libpport.a
258
endif
2 pj 259
 
107 pj 260
endif
261
 
262
# PCLAB
263
# ----------------------------------------------------------------
264
ifeq ($(findstring __PCLAB__,$(USELIB)) , __PCLAB__)
265
 
266
INCL += -I$(BASE)/drivers/pcl812/include
267
 
268
ifeq ($(LIB_PATH)/libpclab.a,$(wildcard $(LIB_PATH)/libpclab.a))
269
LINK_LIB += -lpclab
270
LIB_DEP += $(LIB_PATH)/libpclab.a
271
endif
272
 
273
endif
274
 
275
 
276
# Ports
277
 
278
# FFT
279
# ----------------------------------------------------------------
280
ifeq ($(findstring __FFT__,$(USELIB)) , __FFT__)
281
 
282
INCL += -I$(BASE)/ports/fftw/include
283
 
284
#FFTR
285
ifeq ($(LIB_PATH)/libfftr.a,$(wildcard $(LIB_PATH)/libfftr.a))
286
LINK_LIB += -lfftr
287
LIB_DEP += $(LIB_PATH)/libfftr.a
288
endif
289
# FFTC
290
ifeq ($(LIB_PATH)/libfftc.a,$(wildcard $(LIB_PATH)/libfftc.a))
291
LINK_LIB += -lfftc
292
LIB_DEP += $(LIB_PATH)/libfftc.a
293
endif
294
endif
295
 
48 pj 296
# OSMESA
107 pj 297
# ----------------------------------------------------------------
298
ifeq ($(findstring __OSMESA__,$(USELIB)) , __OSMESA__)
299
 
300
INCL += -I$(BASE)/ports/mesa/include
301
 
48 pj 302
ifeq ($(LIB_PATH)/libosmesa.a,$(wildcard $(LIB_PATH)/libosmesa.a))
303
LINK_LIB += -losmesa
304
LIB_DEP += $(LIB_PATH)/libosmesa.a
305
endif
2 pj 306
 
48 pj 307
# GLUT
308
ifeq ($(LIB_PATH)/libglut.a,$(wildcard $(LIB_PATH)/libglut.a))
309
LINK_LIB += -lglut
310
LIB_DEP += $(LIB_PATH)/libglut.a
311
endif
2 pj 312
 
48 pj 313
# GLU
314
ifeq ($(LIB_PATH)/libglu.a,$(wildcard $(LIB_PATH)/libglu.a))
315
LINK_LIB += -lglu
316
LIB_DEP += $(LIB_PATH)/libglu.a
317
endif
2 pj 318
 
48 pj 319
endif
320
 
98 giacomo 321
# PNG
107 pj 322
# ----------------------------------------------------------------
323
ifeq ($(findstring __PNG__,$(USELIB)) , __PNG__)
324
 
325
INCL += -I$(BASE)/ports/png/include
326
 
327
# PNG
98 giacomo 328
ifeq ($(LIB_PATH)/libpng.a,$(wildcard $(LIB_PATH)/libpng.a))
329
LINK_LIB += -lpng
330
LIB_DEP += $(LIB_PATH)/libpng.a
331
endif
332
 
107 pj 333
endif
334
 
335
# ZLIB
336
# ----------------------------------------------------------------
337
ifeq ($(findstring __ZLIB__,$(USELIB)) , __ZLIB__)
338
 
339
INCL += -I$(BASE)/ports/zlib/include
340
 
341
# PNG
342
ifeq ($(LIB_PATH)/libzlib.a,$(wildcard $(LIB_PATH)/libzlib.a))
343
LINK_LIB += -lzlib
344
LIB_DEP += $(LIB_PATH)/libzlib.a
345
endif
346
 
347
endif
142 trimarchi 348
 
349
# DIDMA
350
# ----------------------------------------------------------------
351
ifeq ($(findstring __DIDMA__, $(USELIB)), __DIDMA__)
352
 
353
INCL += -I$(BASE)/ports/didma/include
354
 
355
# DIDMA
356
ifeq ($(LIB_PATH)/libdidma.a,$(wildcard $(LIB_PATH)/libdidma.a))
357
LINK_LIB += -ldidma
358
LINK_DEP += $(LIB_PATH)/libdidma.a
359
endif
360
 
361
endif
362
 
223 giacomo 363
# FIRST
364
# ----------------------------------------------------------------
365
ifeq ($(findstring __FIRST__, $(USELIB)), __FIRST__)
366
 
885 trimarchi 367
INCL += -I$(BASE)/ports/first/include -I$(BASE)/ports/first/fsf_include
223 giacomo 368
 
369
ifeq ($(LIB_PATH)/libfirst.a,$(wildcard $(LIB_PATH)/libfirst.a))
370
LINK_LIB += -lfirst
371
LINK_DEP += $(LIB_PATH)/libfirst.a
372
endif
373
 
374
endif
375
 
171 giacomo 376
# BTTV
377
# ----------------------------------------------------------------
378
ifeq ($(findstring __BTTV__, $(USELIB)), __BTTV__)
379
 
638 giacomo 380
INCL += -I$(BASE)/drivers/bttv/include
171 giacomo 381
 
382
# BTTV
383
ifeq ($(LIB_PATH)/libbttv.a,$(wildcard $(LIB_PATH)/libbttv.a))
384
LINK_LIB += -lbttv
385
LINK_DEP += $(LIB_PATH)/libbttv.a
386
endif
387
 
388
endif
389
 
461 giacomo 390
# I2C
391
# ----------------------------------------------------------------
392
ifeq ($(findstring __I2C__, $(USELIB)), __I2C__)
393
 
638 giacomo 394
INCL += -I$(BASE)/drivers/i2c/include
461 giacomo 395
 
396
ifeq ($(LIB_PATH)/libi2c.a,$(wildcard $(LIB_PATH)/libi2c.a))
397
LINK_LIB += -li2c
398
LINK_DEP += $(LIB_PATH)/libi2c.a
399
endif
400
 
401
endif
402
 
403
# CM7326
404
# ----------------------------------------------------------------
405
ifeq ($(findstring __CM7326__, $(USELIB)), __CM7326__)
406
 
463 giacomo 407
INCL += -I$(BASE)/drivers/cm7326/include
461 giacomo 408
 
409
ifeq ($(LIB_PATH)/libcm7326.a,$(wildcard $(LIB_PATH)/libcm7326.a))
410
LINK_LIB += -lcm7326
411
LINK_DEP += $(LIB_PATH)/libcm7326.a
412
endif
413
 
414
endif
415
 
259 giacomo 416
# TFTP
417
# ----------------------------------------------------------------
418
ifeq ($(findstring __TFTP__, $(USELIB)), __TFTP__)
171 giacomo 419
 
262 giacomo 420
INCL += -I$(BASE)/ports/tftp/include
259 giacomo 421
 
422
# TFTP
423
ifeq ($(LIB_PATH)/libtftp.a,$(wildcard $(LIB_PATH)/libtftp.a))
424
LINK_LIB += -ltftp
425
LINK_DEP += $(LIB_PATH)/libtftp.a
426
endif
427
 
428
endif
429
 
284 giacomo 430
# SERVO
431
# ----------------------------------------------------------------
432
ifeq ($(findstring __SERVO__, $(USELIB)), __SERVO__)
259 giacomo 433
 
284 giacomo 434
INCL += -I$(BASE)/ports/servo/include
435
 
436
# SERVO
437
ifeq ($(LIB_PATH)/libservo.a,$(wildcard $(LIB_PATH)/libservo.a))
438
LINK_LIB += -lservo
439
LINK_DEP += $(LIB_PATH)/libservo.a
440
endif
441
 
442
endif
360 giacomo 443
 
496 giacomo 444
# INPUT
445
# ----------------------------------------------------------------
446
ifeq ($(findstring __INPUT__, $(USELIB)), __INPUT__)
447
 
448
INCL += -I$(BASE)/drivers/input/include
449
 
450
# JOY
451
ifeq ($(LIB_PATH)/libinput.a,$(wildcard $(LIB_PATH)/libinput.a))
452
LINK_LIB += -linput
453
LINK_DEP += $(LIB_PATH)/libinput.a
454
endif
455
 
456
endif
581 mauro 457
 
458
# CPU
459
# ----------------------------------------------------------------
460
ifeq ($(findstring __CPU__, $(USELIB)), __CPU__)
461
 
462
INCL += -I$(BASE)/drivers/cpu/include
463
 
464
# CPU
465
ifeq ($(LIB_PATH)/libcpu.a,$(wildcard $(LIB_PATH)/libcpu.a))
466
LINK_LIB += -lcpu
467
LINK_DEP += $(LIB_PATH)/libcpu.a
468
endif
469
 
848 giacomo 470
endif
471
 
847 giacomo 472
# USB
473
# ----------------------------------------------------------------
474
ifeq ($(findstring __USB__, $(USELIB)), __USB__)
475
 
476
INCL += -I$(BASE)/drivers/usb/include
477
# CPU
478
ifeq ($(LIB_PATH)/libusb.a,$(wildcard $(LIB_PATH)/libusb.a))
479
LINK_LIB += -lusb
480
LINK_DEP += $(LIB_PATH)/libusb.a
481
 
581 mauro 482
endif
848 giacomo 483
 
484
endif
968 pj 485
 
486
 
487
# Scheduling Modules
488
# ----------------------------------------------------------------
489
 
490
#INCL += -I$(BASE)/modules into config.mk!!!
491
 
492
ifeq ($(LIB_PATH)/libmodules.a,$(wildcard $(LIB_PATH)/libmodules.a))
493
LINK_LIB += -lmodules
494
LINK_DEP += $(LIB_PATH)/libmodules.a
495
endif