mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-04-28 19:13:48 +00:00
16 lines
311 B
Makefile
16 lines
311 B
Makefile
HOSTNAME := $(shell hostname -f)
|
|
SUBDIR = $(shell ls -d */)
|
|
|
|
test_units := $(patsubst %/,%,$(SUBDIR))
|
|
|
|
all:
|
|
@echo "use 'make tests' to run all tests'"
|
|
@echo "use 'make TEST' to run individual test: ${test_units}"
|
|
|
|
.PHONY: $(test_units)
|
|
$(test_units):
|
|
sh exec.sh $@
|
|
|
|
.NOTPARALLEL: tests
|
|
tests: $(test_units)
|