comparison g23m/condat/ms/src/bmi/bmi_env.mak @ 0:509db1a7b7b8

initial import: leo2moko-r1
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 01 Jun 2015 03:24:05 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:509db1a7b7b8
1 #BMI compilation parameters.
2
3 # EazyText compilation. 1 -> Compile. 0 -> Don't compile.
4 # Hard-wire ETXT off until supported, then set via .inf file.
5 #ifndef ETXT
6 #ETXT = 0
7 #endif
8 # Chinese compilation. . 1 -> Compile. 0 -> Don't compile.
9 # Hard-wire CHIMMI off until supported, then set via .inf file.
10 #ifndef CHIMMI
11 #CHIMMI = 0
12 #endif
13 # Game compilation. . 1 -> Compile. 0 -> Don't compile.
14 # Now set via .inf file
15 #ifndef GAME
16 #GAME = 1
17 #endif
18 # Melody generator compilation. . 1 -> Compile. 0 -> Don't compile.
19 # Hard-wire MELGEN off until supported, then set via .inf file.
20 #ifndef MELGEN
21 export MELGEN = 0
22 #endif
23 # HOMEZONE compilation. 1 -> Compile. 0 -> Don't compile.
24 # Now set via .inf file
25 #ifndef HZONE
26 #HZONE = 1
27 #endif
28 # GPRS compilation. 1 -> Compile. 0 -> Don't compile.
29 # Should we be setting this here at all ????? Set via .inf file ?????
30 #ifndef GPRS
31 #GPRS = 1
32 #endif
33 # Internal phonebook compilation. 1 -> Compile. 0 -> Don't compile.
34 # Hard-wire INTPB on, no .inf file setting.
35 ifndef INTPB
36 INTPB = 1
37 endif
38
39 ifeq ($(WAP),1)
40 export AUS_REL_DIR = $(CONDAT_BASE_DIR)/../ausystem
41 # $AUSYSTEM_DIR is being set by /g23m/makefile, if $WAP==1
42 export GLE_DIR = $(AUS_REL_DIR)/GLE
43 endif
44 ifeq ($(ETXT),1)
45 export ZI_DIR = $(CONDAT_BASE_DIR)/../zi
46 endif
47
48
49 ifeq ($(SRVC),1)
50 ifeq ($(MMI),2)
51 # dbachran, 2003-06-11: isn't this variable obsolete by now?
52 CMDADD:=_fd# To be added to the cmd name file in order to set the proper libraries to the external memory.
53 endif
54 endif
55
56
57 ifeq ($(WAP),1)
58 ifeq ($(MMI),2)
59 # dbachran, 2003-06-11: isn't this variable obsolete by now?
60 CMDADD:=_wap# To be added to the cmd name file in order to set the proper libraries to the external memory.
61 endif
62 endif
63
64 ifeq ($(WAP),1)
65 # NOTE: Use $AUSYSTEM_DIR (absolute path, set by /g23m/makefile) here
66 # since these variables are used for includes from source dirs below,
67 # so no relativ path allowed.
68 export IAUS = $(AUSYSTEM_DIR)/Gwc/include
69 export IAUSC = $(AUSYSTEM_DIR)/Gwc/source
70 export IGLE = $(AUSYSTEM_DIR)/GLE/include
71 export IAUSOPTMEM = $(AUSYSTEM_DIR)/Gwc/optional/memory
72 endif
73
74
75 ifeq ($(ETXT),1)
76 include $(ZI_DIR)/zi_env.mak
77 endif
78
79
80 ifeq ($(ETXT),1)
81 CONDAT_LIBS += $(ZI_LIB) $(ZI_C_LIB)
82 endif
83
84 ifeq ($(WAP),1)
85 include $(AUS_REL_DIR)/ausystem_env.mak
86 include $(GLE_DIR)/gle_env.mak
87 endif
88
89 ifeq ($(WAP),1) # Libraries for wap versions
90
91 CONDAT_LIBS += $(AUS_REL_LIB) $(GLE_REL_LIB)
92
93 endif
94
95
96
97
98
99