all: test testee test: test.o gcc $^ -o $@ -g test.o: test.c gcc -c $^ -g testee: testee.o ld $^ -o $@ testee.o: testee.asm nasm -felf64 $^ -o $@ -g clean: rm *.o test *.gch