9 lines
128 B
Bash
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"
|