blob: 4ea2cdd32d21ee904a430663708f1e7a704444e1 [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
Daniel Dunbarafed0992010-06-08 20:34:18 +000010CLANG_LEVEL := ..
Ted Kremenek2dc651d2011-08-09 03:39:19 +000011DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool
Daniel Dunbarfec7c2a2009-01-19 19:20:01 +000012
Daniel Dunbarafed0992010-06-08 20:34:18 +000013include $(CLANG_LEVEL)/../../Makefile.config
Chris Lattnerb196ef72010-03-07 00:17:28 +000014
NAKAMURA Takumi4b0104d2010-11-09 03:25:21 +000015ifeq ($(OS), $(filter $(OS), Minix))
John McCall8f0e8d22011-06-15 23:25:17 +000016DIRS := $(filter-out libclang c-index-test, arcmt-test, $(DIRS))
Chris Lattnerb196ef72010-03-07 00:17:28 +000017endif
18
Daniel Dunbarafed0992010-06-08 20:34:18 +000019include $(CLANG_LEVEL)/Makefile