fibonacci/asm/Makefile

7 lines
87 B
Makefile
Raw Permalink Normal View History

2020-08-22 17:33:55 +00:00
all: fib32
fib32: fib32.asm
nasm -f elf32 fib32.asm
gcc -m32 -no-pie fib32.o -o $@