comparison srf2fastq/io_lib-1.12.2/options.mk @ 0:d901c9f41a6a default tip

Migrated tool version 1.0.1 from old tool shed archive to new tool shed repository
author dawe
date Tue, 07 Jun 2011 17:48:05 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:d901c9f41a6a
1 #-----------------------------------------------------------------------------
2 # Optional corba support
3 #
4 # CORBA=1
5
6 # ABI BioLIMS support
7 # BIOLIMS=1
8
9 # Enable specific library types
10 IOLIB_SCF=1
11 IOLIB_EXP=1
12 IOLIB_PLN=1
13 IOLIB_ABI=1
14 IOLIB_ALF=1
15 IOLIB_CTF=1
16 IOLIB_ZTR=1
17 IOLIB_SFF=1
18
19 #-----------------------------------------------------------------------------
20 # Optional defines - do not edit this bit
21 ifdef IOLIB_SCF
22 DEFINES += -DIOLIB_SCF
23 endif
24
25 ifdef IOLIB_EXP
26 DEFINES += -DIOLIB_EXP
27 endif
28
29 ifdef IOLIB_PLN
30 DEFINES += -DIOLIB_PLN
31 endif
32
33 ifdef IOLIB_ABI
34 DEFINES += -DIOLIB_ABI
35 endif
36
37 ifdef IOLIB_ALF
38 DEFINES += -DIOLIB_ALF
39 endif
40
41 ifdef IOLIB_CTF
42 DEFINES += -DIOLIB_CTF
43 endif
44
45 ifdef IOLIB_ZTR
46 DEFINES += -DIOLIB_ZTR
47 RLIBS += $(ZLIB_LIB)
48 CFLAGS += $(ZLIB_INC)
49 endif
50
51 ifdef IOLIB_SFF
52 DEFINES += -DIOLIB_SFF
53 endif
54
55 ifdef BIOLIMS
56 DEFINES += -DUSE_BIOLIMS
57 RLIBS += $(BIOLIMS_LIB)
58 endif
59
60 ifdef CORBA
61 OBJS += $(CORBA_OBJS)
62 RLIBS += $(CORBA_LIB)
63 endif