mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
26 lines
403 B
Makefile
26 lines
403 B
Makefile
# When a target is defined multiple times, the prerequisites should get
|
|
# merged.
|
|
|
|
default: foo bar baz
|
|
|
|
foo:
|
|
test "$<" = "foo.in1"
|
|
@echo TEST-PASS
|
|
|
|
foo: foo.in1
|
|
|
|
bar: bar.in1
|
|
test "$<" = "bar.in1"
|
|
test "$^" = "bar.in1 bar.in2"
|
|
@echo TEST-PASS
|
|
|
|
bar: bar.in2
|
|
|
|
baz: baz.in2
|
|
baz: baz.in1
|
|
test "$<" = "baz.in1"
|
|
test "$^" = "baz.in1 baz.in2"
|
|
@echo TEST-PASS
|
|
|
|
foo.in1 bar.in1 bar.in2 baz.in1 baz.in2:
|