9 lines
174 B
Bash
Executable File
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
|