mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
17 lines
391 B
Makefile
17 lines
391 B
Makefile
|
# Implicit rules have special instructions to deal with directories, so that a pattern rule which doesn't directly apply
|
||
|
# may still be used.
|
||
|
|
||
|
all: dir/host_test.otest
|
||
|
|
||
|
host_%.otest: %.osource extra.file
|
||
|
@echo making $@ from $<
|
||
|
|
||
|
test.osource:
|
||
|
@echo TEST-FAIL should have made dir/test.osource
|
||
|
|
||
|
dir/test.osource:
|
||
|
@echo TEST-PASS made the correct dependency
|
||
|
|
||
|
extra.file:
|
||
|
@echo building $@
|