Move build products to build directory

This commit is contained in:
2026-03-29 09:11:27 -07:00
parent ac231173ed
commit 3338a617cc
7 changed files with 54 additions and 58 deletions

View File

@@ -2,7 +2,7 @@
mkdir -p tmp
echo "Test AoC 2024 solutions"
# FIXME - it turns out there are some stack issues here (including length)
NCC="bun run newt.js"
NCC="bun run build/newt.js"
total=0
failed=0
for fn in aoc2024/Day*.newt; do

View File

@@ -1,7 +1,7 @@
#!/bin/sh
mkdir -p tmp
echo "Test AoC 2025 solutions"
NCC="node newt.js"
NCC="node build/newt.js"
total=0
failed=0
for fn in aoc2025/Day*.newt; do

View File

@@ -1 +1 @@
(parameterize ([optimize-level 3]) (compile-program "newt.ss"))
(parameterize ([optimize-level 3]) (compile-program "build/newt.ss"))

View File

@@ -1,7 +1,7 @@
#!/bin/sh
SAMPLES=$(find playground/samples -name "*.newt")
# NEWT ="bun run newt.js"
NEWT=${NEWT:="node newt.js"}
# NEWT ="bun run build/newt.js"
NEWT=${NEWT:="node build/newt.js"}
OUTFILE=${OUTFILE:="tmp/out.js"}
RUNOUT=${RUNOUT:="node"}
mkdir -p tmp