Daniel Dunbar | fec7c2a | 2009-01-19 19:20:01 +0000 | [diff] [blame] | 1 | ##===- 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 Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 10 | CLANG_LEVEL := .. |
Daniel Dunbar | f51f20f | 2010-04-30 21:51:10 +0000 | [diff] [blame] | 11 | DIRS := driver libclang c-index-test |
Daniel Dunbar | fec7c2a | 2009-01-19 19:20:01 +0000 | [diff] [blame] | 12 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 13 | include $(CLANG_LEVEL)/../../Makefile.config |
Chris Lattner | b196ef7 | 2010-03-07 00:17:28 +0000 | [diff] [blame] | 14 | |
NAKAMURA Takumi | 4b0104d | 2010-11-09 03:25:21 +0000 | [diff] [blame^] | 15 | ifeq ($(OS), $(filter $(OS), Minix)) |
Daniel Dunbar | f51f20f | 2010-04-30 21:51:10 +0000 | [diff] [blame] | 16 | DIRS := $(filter-out libclang c-index-test, $(DIRS)) |
Chris Lattner | b196ef7 | 2010-03-07 00:17:28 +0000 | [diff] [blame] | 17 | endif |
| 18 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 19 | include $(CLANG_LEVEL)/Makefile |