1 2cur_dir := $(dir $(lastword $(MAKEFILE_LIST))) 3 4obj_c := $(patsubst $(cur_dir)%,%,$(wildcard $(cur_dir)*.c)) 5obj_cpp := $(patsubst $(cur_dir)%,%,$(wildcard $(cur_dir)*.cpp)) 6 7obj-y := $(obj_c:.c=.o) $(obj_s:.S=.o) $(obj_cpp:.cpp=.o) 8 9ccflags-y := \ 10 -I$(obj)/../../mbed/api/ \ 11 -I$(obj)/../../mbed/common \ 12 -I$(obj)/../../mbed/targets/hal/TARGET_BEST/TARGET_BEST100X/TARGET_MBED_BEST1000/ \ 13 -I$(obj)/../../cmsis/inc/ \ 14 -I$(obj)/../../mbed/targets/hal/TARGET_BEST/TARGET_BEST100X/ \ 15 -I$(obj)/../../mbed/hal/ \ 16 -I$(obj)/../../fs/fat/ \ 17 -I$(obj)/../../fs/sd/ \ 18 -I$(obj)/../../fs/fat/ChaN \ 19 -I$(obj)/../../rtos/rtos/ \ 20 -I$(obj)/../../iabt/inc/ 21 22ccflags-y += -DTARGET_LPC1768 -DWORDS_STACK_SIZE=1024 -DOS_TIMERSTKSZ=1024 -D__CORTEX_M4 23