CC = gcc
LIB = -lxml2
INC = -I/usr/include/libxml2

xml2sql: xml2sql.c
	${CC} ${LIB} ${INC} -o $@ $<
