mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-06 12:44:27 +08:00
16 lines
292 B
Makefile
16 lines
292 B
Makefile
.DEFAULT: test
|
|
|
|
test_files := $(wildcard test/*.test)
|
|
short_targets := $(patsubst test/%,%,$(test_files))
|
|
|
|
.PHONY: monitor test $(test_files) $(short_targets)
|
|
|
|
test:
|
|
$(MAKE) -C test
|
|
|
|
monitor:
|
|
$(MAKE) -C test monitor
|
|
|
|
$(test_files) $(short_targets):
|
|
$(MAKE) -C test $(patsubst test/%,%,$@)
|