9 lines
86 B
Makefile
9 lines
86 B
Makefile
test1:
|
|
echo "foo: bar" > foo.d
|
|
|
|
test2: foo
|
|
|
|
bar:
|
|
echo OK
|
|
|
|
-include foo.d missing.d
|