mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00: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) $@
|