aboutsummaryrefslogtreecommitdiffstats
path: root/05-Smallest-Multiple/asm/Makefile
blob: 3ae43fc4337050d7aee614729016c1ae67f6dee0 (plain)
1
2
3
4
5
6
smallmult: smallmult.o
	gcc smallmult.o -o smallmult 
smallmult.o: smallmult.asm
	nasm -w+all -f elf64 -g -F stabs smallmult.asm
clean:
	rm -f smallmult smallmult.o