pwetty/build.sh
2025-05-07 20:38:17 +02:00

8 lines
89 B
Bash
Executable File

#!/usr/bin/bash
gcc main.c -o a.out
nasm -f elf64 main.s -o b.o
ld b.o -o b.out
rm b.o