summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile7
1 files changed, 6 insertions, 1 deletions
diff --git a/justfile b/justfile
index 825aa93..be64e85 100644
--- a/justfile
+++ b/justfile
@@ -2,10 +2,15 @@
default:
just --list --unsorted
+build:
+ fennel --compile-binary main.fnl dist/nmm \
+ /usr/local/lib/liblua.a \
+ /usr/local/include/lua5.4
+
# run tests
test:
#!/bin/zsh
- for f in **/*.test.fnl; do fennel $f | faucet; done
+ for f in lib/**/*.test.fnl; do fennel $f | faucet; done
# build expect scripts
expects: