# The clean Makefile. This does nothing but clean up.

all: cboodle.so

cboodle.so:
	echo '*** You must run "python configure.py" before you can "make"!'
	exit 1

clean:
	rm -f *.o *.so *.pyc *~

