default:
	make clean
	c++ ./coff-linker.cpp -o ./coff-linker
	make ./test

clean:
	rm -rf *.o *.obj ./coff-linker

test:
	nasm -f coff test.asm
	./coff-linker ./test.o ./test_code
	
