共通モジュールの追加規約
Makefile.rules
# i-focus common include path COMMON_INCPATH += MS_MMI_Main/source/mmi_app/app/ifcs_mqtt/h # add i-focus common include path below # e.g. COMMON_INCPATH += MS_MMI_Main/source/mmi_app/app/ifcs_xxxx/h # end of i-focus common include pathANTISW3.modules
ifeq ($(strip $(IFCS_WATCH_SUPPORT)), TRUE) COMPLIBS_DBG += ifcs_mqtt # add i-focus module below # e.g. COMPLIBS_DBG += ifcs_xxxx # end of i-focus module endif # ... ifeq ($(strip $(IFCS_WATCH_SUPPORT)), TRUE) LINKLIBLIST += $(addprefix $(BUILD_DIR)/lib/,ifcs_mqtt.a) # add i-focus static lib below # e.g. LINKLIBLIST += $(addprefix $(BUILD_DIR)/lib/,ifcs_xxxx.a) # end of i-focus static lib endif