
all: testDirColon testFileColon

testDirColon: dir\:1/file1
	echo "Dir test passed: $?"

testFileColon: dir2/file1\:1
	echo "File test passed: $?"

