]> granicus.if.org Git - clang/commitdiff
disable these dirs which rely on dynamic linking on mingw/cygwin
authorChris Lattner <sabre@nondot.org>
Sun, 7 Mar 2010 00:17:28 +0000 (00:17 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 7 Mar 2010 00:17:28 +0000 (00:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97892 91177308-0d34-0410-b5e6-96231b3b80d8

tools/Makefile

index ce3e4cd308e4b4638319aad1a7dcf5bd26d6352c..5a9c67421b78106db24460a987d4800bff937220 100644 (file)
 LEVEL := ../../..
 DIRS := driver CIndex c-index-test
 
+include $(LEVEL)/Makefile.config
+
+ifeq ($(OS), $(filter $(OS), Cygwin MingW))
+DIRS := $(filter $(DIRS), CIndex)
+DIRS := $(filter $(DIRS), c-index-test)
+endif
+
 include $(LEVEL)/Makefile.common