.PRECIOUS: a.tmp2
.PHONY: clean

%.tmp: b.tmp2
	touch a.tmp

%.tmp2:
	touch a.tmp2

clean:
	rm -f *.tmp *.tmp2
