pwetty/build.sh
2025-05-05 21:43:27 +02:00

8 lines
82 B
Bash
Executable File

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