blob: 8cd6d2aa10521ba62087ca511111336a54ce83a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
.PHONY: build test dev
build:
@ scripts/build
test:
@ scripts/test
dev:
@ find scripts autoload/polyglot ftdetect tests . -type f -maxdepth 1 | DEV=1 entr bash -c 'make'
|