ASMTools/rot13/make.sh
2024-08-23 13:05:58 -07:00

9 lines
174 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$1" == "rot13.dbg" ]; then
nasm -felf64 -g main.asm
ld --omagic main.o -o rot13.dbg
exit
fi
nasm -felf64 main.asm
ld --omagic main.o -s -o rot13