You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
890 B
27 lines
890 B
#===============================================================================
|
|
# export variable
|
|
#===============================================================================
|
|
ifeq ($(CFG_SOCT_EXPORT_FLAG),)
|
|
SDK_DIR ?= $(shell cd $(CURDIR)/../../.. && /bin/pwd)
|
|
include $(SDK_DIR)/base.mak
|
|
endif
|
|
|
|
include $(SAMPLE_DIR)/base.mak
|
|
|
|
#===============================================================================
|
|
# local variable
|
|
#===============================================================================
|
|
$(warning "helloworld_zou")
|
|
$(warning $(USR_DIR))
|
|
$(warning $(DRV_DIR))
|
|
CFLAGS := -I$(USR_DIR)/include \
|
|
-I$(DRV_DIR)/include \
|
|
-I$(USR_DIR)/securec \
|
|
-I$(SAMPLE_DIR)/common
|
|
|
|
SAMPLE_IMAGES := sample_moto_pwm sample_pwm
|
|
|
|
DEPEND_LIBS := -luapi_memory -luapi_common -luapi_securec
|
|
|
|
include $(SAMPLE_DIR)/soc_sample_rules.mak
|