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