all: one two three four

one:
	echo Hi

two:
	V=3

three:
	touch three

four: three
	cp three four
