mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-24 04:51:24 +01:00
8 lines
154 B
Makefile
8 lines
154 B
Makefile
|
|
EXAMPLES = $(foreach EXAMPLE, $(wildcard examples/*.js), $(EXAMPLE))
|
|
|
|
.PHONY: test
|
|
test: $(EXAMPLES)
|
|
|
|
.PHONY: $(EXAMPLES)
|
|
$(EXAMPLES): ; node $@ && echo
|