We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 466bb96 commit 202efd7Copy full SHA for 202efd7
1 file changed
meta/test/Makefile
@@ -0,0 +1,11 @@
1
+MAKEFILE_DIR := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
2
+
3
+DIRS := $(wildcard $(MAKEFILE_DIR)/*/)
4
+TARGETS := $(notdir $(patsubst %/,%,$(DIRS)))
5
6
+.PHONY: all $(TARGETS)
7
8
+all: $(TARGETS)
9
10
+$(TARGETS):
11
+ @cd $(MAKEFILE_DIR)/$@ && ./test.sh
0 commit comments