blob: 5a9c67421b78106db24460a987d4800bff937220 [file] [log] [blame]
Daniel Dunbarfec7c2a2009-01-19 19:20:01 +00001##===- tools/Makefile --------------------------------------*- Makefile -*-===##
2#
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7#
8##===----------------------------------------------------------------------===##
9
10LEVEL := ../../..
Douglas Gregor9fb48de2010-01-22 20:40:20 +000011DIRS := driver CIndex c-index-test
Daniel Dunbarfec7c2a2009-01-19 19:20:01 +000012
Chris Lattnerb196ef72010-03-07 00:17:28 +000013include $(LEVEL)/Makefile.config
14
15ifeq ($(OS), $(filter $(OS), Cygwin MingW))
16DIRS := $(filter $(DIRS), CIndex)
17DIRS := $(filter $(DIRS), c-index-test)
18endif
19
Daniel Dunbarfec7c2a2009-01-19 19:20:01 +000020include $(LEVEL)/Makefile.common