summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e2e8de8e1e60d576f877227a203868aaf54d254e (plain)
1
2
3
4
5
6
7
8
9
10
11
setCase: setCase.o
	gcc -pedantic-errors -o setCase setCase.o
#	gcc -pedantic-errors -ggdb -o setCase setCase.o

setCase.o: setCase.asm
	nasm -w+all -f elf64 setCase.asm
#	nasm -w+all -f elf64 -F dwarf setCase.asm

clean:
	rm *.o
	rm setCase