4 lines
95 B
Makefile
4 lines
95 B
Makefile
|
all:
|
||
|
rm -f antwort
|
||
|
nasm -felf32 code.asm -o antwort.o && ld -m elf_i386 antwort.o -o antwort
|