• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# TODO(ninja): This is tough to fix with ninja. Ninja normalizes
2# target names while make does not.
3
4test1:
5	mkdir a b
6
7test2: a/b a/../a/b a/./b b/a b/../b/a b/./a
8
9a/%:
10	touch $@
11
12b/%:
13	echo $@
14