DIRS=src sample-data

compile:
	$(MAKE) -C src

test: compile
	cd sample-data;	../src/analysis < input;
	@echo "test completed. Check newly created files in sample-data"

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

realclean: clean

distclean: realclean


