Files
wcc/build
2026-03-25 19:30:25 +00:00

9 lines
128 B
Bash

#!/bin/bash
echo "building wcc"
# only ghosts in the shell here
as src/*.asm -o obj/wcc.o
ld -s obj/wcc.o -o wcc
echo "done"