1all: deps
2
3deps:
4	cd sharness && make deps
5
6clean:
7	cd sharness && make clean
8
9test: test_expensive
10
11test_expensive:
12	cd sharness && make TEST_EXPENSIVE=1
13
14test_cheap:
15	cd sharness && make
16
17.PHONY: all clean
18