#simple makefile
a.out: xml.o main.o
	gcc  xml.o main.o
	
main.o: main.c
	gcc -c -o main.o main.c
	
xml.o: xml.c xml.h
	gcc -c -o xml.o xml.c
