You've already forked m5stack_devkit
mirror of
https://github.com/m5stack/m5stack_devkit.git
synced 2026-05-20 10:16:49 -07:00
16 lines
306 B
Makefile
16 lines
306 B
Makefile
|
|
#
|
||
|
|
# This is a project Makefile. It is assumed the directory this Makefile resides in is a
|
||
|
|
# project subdirectory.
|
||
|
|
#
|
||
|
|
|
||
|
|
PROJECT_NAME := lcd_example
|
||
|
|
|
||
|
|
a:=$(shell pwd)
|
||
|
|
b:=$(dir $(patsubst %/,%,$(dir $(a))))
|
||
|
|
EXTRA_COMPONENT_DIRS:=$(b)components
|
||
|
|
|
||
|
|
export EXTRA_COMPONENT_DIRS
|
||
|
|
|
||
|
|
include $(IDF_PATH)/make/project.mk
|
||
|
|
|