all: xml-to-sexp

xml-to-sexp:
	gcc -O2 -o xml-to-sexp xml-to-sexp.c -lexpat

clean:
	@rm -f *.o xml-to-sexp
