blob: 8407dfdedde7ddf9c6762aa80e18bd391f734df1 [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 := ../../..
Daniel Dunbarf51f20f2010-04-30 21:51:10 +000011DIRS := driver libclang 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))
Daniel Dunbarf51f20f2010-04-30 21:51:10 +000016DIRS := $(filter-out libclang c-index-test, $(DIRS))
Chris Lattnerb196ef72010-03-07 00:17:28 +000017endif
18
Daniel Dunbarfec7c2a2009-01-19 19:20:01 +000019include $(LEVEL)/Makefile.common