ASMTools/rot13/make.sh

9 lines
174 B
Bash
Raw Normal View History

2024-08-23 13:59:26 -04:00
#!/usr/bin/env bash
if [ "$1" == "rot13.dbg" ]; then
nasm -felf64 -g main.asm
ld --omagic main.o -o rot13.dbg
2024-08-23 13:59:26 -04:00
exit
fi
nasm -felf64 main.asm
ld --omagic main.o -s -o rot13