Sergio R. Caprile fa24a3e09e Add test Makefiles for more IDEs
Expand Wizard test script
2024-10-08 18:55:32 -03:00

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: