summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/native-touch.mk
blob: 811161ece79f4da63db922b05ad58e859634d889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TOUCH ?= touch

foo:
	$(TOUCH) bar
	$(TOUCH) baz
	$(MAKE) -f $(TESTPATH)/native-touch.mk baz
	$(TOUCH) -t 198007040802 baz
	$(MAKE) -f $(TESTPATH)/native-touch.mk baz

bar:
	$(TOUCH) $@

baz: bar
	echo TEST-PASS
	$(TOUCH) $@