forked from jkbonfield/io_lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.mk
58 lines (47 loc) · 887 Bytes
/
options.mk
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
#-----------------------------------------------------------------------------
# Optional corba support
#
# CORBA=1
# ABI BioLIMS support
# BIOLIMS=1
# Enable specific library types
IOLIB_SCF=1
IOLIB_EXP=1
IOLIB_PLN=1
IOLIB_ABI=1
IOLIB_ALF=1
IOLIB_ZTR=1
IOLIB_SFF=1
#-----------------------------------------------------------------------------
# Optional defines - do not edit this bit
ifdef IOLIB_SCF
DEFINES += -DIOLIB_SCF
endif
ifdef IOLIB_EXP
DEFINES += -DIOLIB_EXP
endif
ifdef IOLIB_PLN
DEFINES += -DIOLIB_PLN
endif
ifdef IOLIB_ABI
DEFINES += -DIOLIB_ABI
endif
ifdef IOLIB_ALF
DEFINES += -DIOLIB_ALF
endif
ifdef IOLIB_ZTR
DEFINES += -DIOLIB_ZTR
RLIBS += $(ZLIB_LIB)
CFLAGS += $(ZLIB_INC)
endif
ifdef IOLIB_SFF
DEFINES += -DIOLIB_SFF
endif
ifdef BIOLIMS
DEFINES += -DUSE_BIOLIMS
RLIBS += $(BIOLIMS_LIB)
endif
ifdef CORBA
OBJS += $(CORBA_OBJS)
RLIBS += $(CORBA_LIB)
endif