DIRS=src
TMP_FILES=\
sample-data/cluster.* \
sample-data/out \
sample-data/centers.cl

compile:
	$(MAKE) -C src

test: compile
	cd sample-data; ./example.bash

clean:
	-rm -rf *~ *# *.mod $(TMP_FILES);
	for d in $(DIRS); do $(MAKE) -C $$d clean; done

realclean: clean

distclean: realclean


