mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
27 lines
607 B
Makefile
27 lines
607 B
Makefile
|
#
|
||
|
# "main" pseudo-component makefile.
|
||
|
#
|
||
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
||
|
|
||
|
include $(BL60X_SDK_PATH)/components/network/ble/ble_common.mk
|
||
|
|
||
|
ifeq ($(CONFIG_ENABLE_PSM_RAM),1)
|
||
|
CPPFLAGS += -DCONF_USER_ENABLE_PSRAM
|
||
|
endif
|
||
|
|
||
|
ifeq ($(CONFIG_ENABLE_CAMERA),1)
|
||
|
CPPFLAGS += -DCONF_USER_ENABLE_CAMERA
|
||
|
endif
|
||
|
|
||
|
ifeq ($(CONFIG_ENABLE_BLSYNC),1)
|
||
|
CPPFLAGS += -DCONF_USER_ENABLE_BLSYNC
|
||
|
endif
|
||
|
|
||
|
ifeq ($(CONFIG_ENABLE_VFS_SPI),1)
|
||
|
CPPFLAGS += -DCONF_USER_ENABLE_VFS_SPI
|
||
|
endif
|
||
|
|
||
|
ifeq ($(CONFIG_ENABLE_VFS_ROMFS),1)
|
||
|
CPPFLAGS += -DCONF_USER_ENABLE_VFS_ROMFS
|
||
|
endif
|