default:
	@echo 'Try "make run-foo" for any sub-dir of run/.'
run-%:
	cd run/$*; rm -rf 0-rawreads/ 1-preads_ovl/ 2-asm-falcon/; ls -l; fc_run.py fc_run.cfg logging.ini
clean-%:
	${MAKE} -C run/$* clean
setup-%:
	git-sym update run/$*
	git-sym show run/$*
	git-sym check run/$*
# Our only integration test, for now.
test: full-test import-test ;

.PHONY: import-test
import-test:
	python -c 'import pypeflow.pwatcher_workflow; print pypeflow.pwatcher_workflow'
	python -c 'import falcon_kit; print falcon_kit.falcon'

.PHONY: full-test
full-test:
	${MAKE} run-synth0
	${MAKE} -C run/synth0 test

.PHONY: default
