summary refs log tree commit diff stats
path: root/Makefile
blob: 981bed21c88edd52300b88e437d0476d6ae1c9f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
main: main.asm border.asm utils.asm
	mkdir -p build/
	nasm -f elf64 -g main.asm -o build/main.o
	nasm -f elf64 -g border.asm -o build/border.o
	nasm -f elf64 -g utils.asm -o build/utils.o
	nasm -f elf64 -g input.asm -o build/input.o
	ld build/main.o build/border.o build/utils.o build/input.o -o main

clean:
	rm -r main build/