SLAE/exam1/compile.sh

6 lines
105 B
Bash
Raw Normal View History

2013-03-06 22:54:40 +00:00
#!/usr/bin/env sh
ARG1=$1
set -x
nasm -f elf32 -o $ARG1.o $ARG1.nasm && ld -m elf_i386 -o $ARG1 $ARG1.o