Skip to content

Commit

Permalink
host emulation fix (esp8266#5704)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-v authored Feb 4, 2019
1 parent e43a586 commit 8412d11
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/host/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ CORE_CPP_FILES := $(addprefix $(CORE_PATH)/,\
FS.cpp \
spiffs_api.cpp \
MD5Builder.cpp \
Schedule.cpp \
)

CORE_C_FILES := $(addprefix $(CORE_PATH)/,\
Expand Down Expand Up @@ -319,14 +320,13 @@ endif # recursive

.PHONY: list
list: # show core example list
@for dir in ../../libraries/*/examples; do \
exampledir=$${dir%/*}; \
exampledirname=$${exampledir##*/}; \
for subdir in $$dir/*; do \
exname=$${subdir##*/}; \
echo "$$subdir/$$exname"; \
done; \
done; \
@for dir in ../../libraries/*/examples/* \
../../libraries/*/examples/*/*; do \
test -d $$dir || continue; \
examplename=$${dir##*/}; \
test -f $${dir}/$${examplename}.ino || continue; \
echo $${dir}/$${examplename}; \
done | sort; \

#################################################
# help
Expand Down

0 comments on commit 8412d11

Please sign in to comment.