mirror of
https://github.com/Raimondi/delimitMate.git
synced 2025-12-06 12:44:27 +08:00
15 lines
258 B
Makefile
15 lines
258 B
Makefile
test_files := $(wildcard *.test)
|
|
|
|
.PHONY: all monitor $(test_files)
|
|
|
|
all:
|
|
time tclsh all.tcl
|
|
|
|
$(test_files):
|
|
time tclsh $@
|
|
printf "\a"
|
|
|
|
monitor:
|
|
fswatch -o ../autoload/*.vim ../plugin/*.vim *.test \
|
|
| xargs -n1 -I\{\} time tclsh all.tcl || printf "\a"
|