summary refs log tree commit diff
path: root/justfile
diff options
context:
space:
mode:
authordozens2024-06-25 21:22:35 -0600
committerdozens2024-06-30 23:24:42 -0600
commitbf71791fc540a584dd6d88548c91192294d106bc (patch)
treeba73c1f1616c19a34e33634a102c9d84184cada7 /justfile
parent9bf31e86cef62bed76a35353e791768960b14d70 (diff)
feat: add story engine HEAD main
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: