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