mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 21:03:08 +09:00
15 lines
225 B
Makefile
15 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) $@
|