Windows fix for TestConflictingDefinition makefile

gnuwin32 rm does not like wildcards that match nothing even if we
specify -f (probably because the wildcard expansion happens in-process
there). We could use make $(wildcard) here, but it seems safer to
explicitly list the files here, just like the normal Makefile.rules
does.

llvm-svn: 302013
This commit is contained in:
Pavel Labath 2017-05-03 11:27:35 +00:00
parent b2bf741e9a
commit 6b09f9d603
1 changed files with 1 additions and 1 deletions

View File

@ -21,4 +21,4 @@ a.out: main.m libTest.dylib libTestExt.dylib
.PHONY: clean
clean:
rm -rf *.dylib a.out *.o *.dSYM *.d
rm -rf libTest.dylib libTestExt.dylib a.out Test.o TestExt.o libTest.dylib.dSYM libTest.dylib.dSYM