CC=gcc
CFLAGS=-Wall -g $(shell xml2-config --cflags)
LIBS=$(shell xml2-config --libs)

schrodingers_cat:	schrodingers_cat.o
	$(CC) $(CFLAGS) -o $@ schrodingers_cat.o $(LIBS)

clean:
	rm -f *.o schrodingers_cat schrodingers_cat.exe
