⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bmi_env.mak

📁 GSM手机设计软件代码
💻 MAK
字号:
#BMI compilation parameters.

# EazyText compilation. 1 -> Compile. 0 -> Don't compile.
# Hard-wire ETXT off until supported, then set via .inf file.
#ifndef ETXT
#ETXT = 0
#endif
# Chinese compilation. . 1 -> Compile. 0 -> Don't compile.
# Hard-wire CHIMMI off until supported, then set via .inf file.
#ifndef CHIMMI
#CHIMMI = 0
#endif
# Game compilation. . 1 -> Compile. 0 -> Don't compile.
# Now set via .inf file
#ifndef GAME
#GAME = 1
#endif
# Melody generator compilation. . 1 -> Compile. 0 -> Don't compile.
# Hard-wire MELGEN off until supported, then set via .inf file.
#ifndef MELGEN
MELGEN = 0
#endif
# HOMEZONE compilation.  1 -> Compile. 0 -> Don't compile.
# Now set via .inf file
#ifndef HZONE
#HZONE = 1
#endif
# GPRS compilation. 1 -> Compile. 0 -> Don't compile.
# Should we be setting this here at all ????? Set via .inf file ?????
#ifndef GPRS
#GPRS = 1
#endif
# Internal phonebook compilation. 1 -> Compile. 0 -> Don't compile.
# Hard-wire INTPB on, no .inf file setting.
ifndef INTPB
INTPB = 1
endif

AUS_REL_DIR = ausystem
AUSYSTEM_DIR = $(CONDAT_DIR)/../$(AUS_REL_DIR)
GLE_DIR = $(CONDAT_DIR)/../$(AUS_REL_DIR)/GLE
ZI_DIR = $(CONDAT_DIR)/../zi


ifeq ($(SRVC),1)
	ifeq ($(MMI),2)
	CMDADD:=_fd# To be added to the cmd name file in order to set the proper libraries to the external memory.
	endif
endif


ifeq ($(WAP),1)
	ifeq ($(MMI),2)
	CMDADD:=_wap# To be added to the cmd name file in order to set the proper libraries to the external memory.
	endif
endif

IAUS    = $(AUSYSTEM_DIR)/Gwc/include
IAUSC	= $(AUSYSTEM_DIR)/Gwc/source
IGLE    = $(AUSYSTEM_DIR)/GLE/include
IAUSOPTMEM =  $(AUSYSTEM_DIR)/Gwc/optional/memory


ifeq ($(ETXT),1)
include $(ZI_DIR)/zi_env.mak
endif


ifeq ($(ETXT),1)
CONDAT_LIBS += $(ZI_LIB) $(ZI_C_LIB)
endif

ifeq ($(WAP),1)
include $(AUSYSTEM_DIR)/ausystem_env.mak
include $(GLE_DIR)/gle_env.mak
endif

ifeq ($(WAP),1)  # Libraries for wap versions

#TISH 030722 CONDAT_LIBS += $(AUS_REL_LIB) $(GLE_REL_LIB)
CONDAT_LIBS += $(AUSYSTEM_DIR)/lib/ausystem_tr.lib
CONDAT_LIBS += $(AUSYSTEM_DIR)/lib/gle_tr.lib

endif






⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -