foo\ bar: my\ dep echo "made something" > "$@" my\ dep: echo "this is a dependency" > "$@" .PHONY: clean clean: -@/bin/rm -f "my dep" "foo bar"