mirror of
https://github.com/sigmasternchen/fibonacci
synced 2025-03-16 00:29:00 +00:00
6 lines
87 B
Makefile
6 lines
87 B
Makefile
|
|
all: fib32
|
|
|
|
fib32: fib32.asm
|
|
nasm -f elf32 fib32.asm
|
|
gcc -m32 -no-pie fib32.o -o $@
|