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.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL := ../../..
|
2010-01-23 04:40:20 +08:00
|
|
|
DIRS := driver CIndex c-index-test
|
2009-01-20 03:20:01 +08:00
|
|
|
|
2010-03-07 08:17:28 +08:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
|
|
|
ifeq ($(OS), $(filter $(OS), Cygwin MingW))
|
2010-03-14 20:55:35 +08:00
|
|
|
DIRS := $(filter-out CIndex c-index-test, $(DIRS))
|
2010-03-07 08:17:28 +08:00
|
|
|
endif
|
|
|
|
|
2009-01-20 03:20:01 +08:00
|
|
|
include $(LEVEL)/Makefile.common
|