2009-01-20 03:20:01 +08:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
CLANG_LEVEL := ..
|
2010-05-01 05:51:10 +08:00
|
|
|
DIRS := driver libclang c-index-test
|
2009-01-20 03:20:01 +08:00
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
2010-03-07 08:17:28 +08:00
|
|
|
|
2010-11-09 11:25:21 +08:00
|
|
|
ifeq ($(OS), $(filter $(OS), Minix))
|
2010-05-01 05:51:10 +08:00
|
|
|
DIRS := $(filter-out libclang c-index-test, $(DIRS))
|
2010-03-07 08:17:28 +08:00
|
|
|
endif
|
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/Makefile
|