mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-27 15:01:03 +08:00
fa24a3e09e
Expand Wizard test script
13 lines
234 B
Makefile
13 lines
234 B
Makefile
ROOT ?= $(realpath $(CURDIR)/../..)
|
|
TARGET ?= Debug
|
|
DOCKER = docker run --rm -v $(ROOT):$(ROOT) -v $(CURDIR):/root -w $(CURDIR)
|
|
IMAGE ?= scaprile/cgt
|
|
|
|
all: $(PROJECTS)
|
|
echo
|
|
|
|
$(PROJECTS): FORCE
|
|
$(DOCKER) $(IMAGE) make -C $@
|
|
|
|
FORCE:
|