mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
225 B
Makefile
16 lines
225 B
Makefile
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) $@
|