Write build script

This commit is contained in:
2024-11-08 15:57:15 +00:00
parent 82953fb529
commit 68ea7ac5c7

6
build.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
if [ ! -e build ]; then
mkdir build
fi
as -g -o build/postfix.o postfix.s
ld -o build/postfix build/postfix.o