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