Home | History | Annotate | Download | only in testcase
      1 $(shell mkdir -p tmp)
      2 file = $(shell echo tmp/test\#.ext)
      3 
      4 all: test1
      5 
      6 test1: $(file)
      7 	echo PASS
      8 
      9 $(file):
     10 	touch $(file)
     11