## sample Makefile
## (pretty useless)

DOIT = touch

All: one two three

one:
	echo "this is one"
	${DOIT} one

two:    one
	echo "this is two"
	${DOIT} two

three:  two
	echo "this is three"
	${DOIT} three

clean:
	rm one two three

