mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
fa24a3e09e
Expand Wizard test script
25 lines
1009 B
Makefile
25 lines
1009 B
Makefile
ROOT ?= $(realpath $(CURDIR)/../..)
|
|
PROJECTS ?= $(wildcard ../../examples/stm32/nucleo-*-cube-*)
|
|
TARGET ?= Debug
|
|
DOCKER = docker run --rm -v $(ROOT):$(ROOT) -v $(CURDIR):/root -w $(CURDIR)
|
|
IMAGE ?= scaprile/cubeozone
|
|
# set PATHTO if image author did not set path
|
|
|
|
all: $(PROJECTS)
|
|
$(DOCKER) $(IMAGE) $(PATHTO)headless-build.sh -data workspace -removeAll workspace
|
|
|
|
$(PROJECTS): FORCE
|
|
(make -C $@ && make -C $@ clean) || ( \
|
|
COREDIRS=`find $@ -maxdepth 1 -name 'CM*' -print` && ( \
|
|
(test "$$COREDIRS" == "" && \
|
|
PROJNAME=`xq -r .projectDescription.name $@/.project` && \
|
|
$(DOCKER) $(IMAGE) $(PATHTO)headless-build.sh -data workspace -import $@ -cleanBuild $$PROJNAME/$(TARGET) ) || ( \
|
|
(test "$$COREDIRS" != "" && \
|
|
for core in $$COREDIRS; do \
|
|
DIR=`basename $$core` \
|
|
PROJNAME=`xq -r .projectDescription.name $@/$$DIR/.project` && \
|
|
$(DOCKER) $(IMAGE) $(PATHTO)headless-build.sh -data workspace -import $@/$$DIR -cleanBuild $$PROJNAME/$(TARGET) || exit 1; \
|
|
done ))))
|
|
|
|
FORCE:
|