all: test

test.o: test.c
	gcc -c test.c -o test.o

asmtest.o: asmtest.asm
	nasm -f elf -o asmtest.o asmtest.asm

test: test.o asmtest.o
	gcc -o test test.o asmtest.o

