1SHELL := /bin/bash
2
3all:
4	@echo Nothing to build.  Run \'make test\' to run example executions on each of the sample data sets provided.
5
6clean:
7	cd ./sample_data && make clean
8
9test:
10	cd ./sample_data/ && make test
11
12
13