12 lines
240 B
Makefile
12 lines
240 B
Makefile
# list available recipes
|
|
default:
|
|
just --list --unsorted
|
|
|
|
# run tests
|
|
test:
|
|
for f in lib/*.test.fnl; do fennel $f | faucet; done
|
|
|
|
# build expect scripts
|
|
expects:
|
|
for f in test/*.dat; do awk -f test/test.awk $f > ${f/dat/expect}; done
|