a.o : a.c a.h
	gcc -c a.c -o a.o
	
test_a : a.o test_a.c 
	gcc test_a.c a.o -o test_a
	
clean : 
	rm -f *.o
	rm -f test_a
