diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-08-09 09:56:55 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-08-09 09:56:55 +0200 |
commit | 2bd0834de9925bb280a0d9b9b0cd13de1dc724d8 (patch) | |
tree | e80503d7620516036fcb7fcd5a0c73de00c0a313 /makefile |
initial commit (simple http example copy)
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..b13b1cb --- /dev/null +++ b/makefile @@ -0,0 +1,14 @@ +# +# This is a project Makefile. It is assumed the directory this Makefile resides in is a +# project subdirectory. +# + +PROJECT_NAME := esp8266-rgbstrip + +EXTRA_COMPONENT_DIRS = $(IDF_PATH)/examples/common_components/protocol_examples_common + +include $(IDF_PATH)/make/project.mk + +compile_commands: + bear -- make + |