aboutsummaryrefslogtreecommitdiff
path: root/tools/Makefile
blob: 2588d87dc98a0710ef46adb09380339880069461 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
##===- source/Makefile -------------------------------------*- Makefile -*-===##
#
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##

LLDB_LEVEL := ..
include $(LLDB_LEVEL)/../../Makefile.config

DIRS :=

# enable lldb-gdbserver for supported platforms
ifneq (,$(strip $(filter $(HOST_OS), FreeBSD Linux NetBSD GNU/kFreeBSD)))
DIRS += lldb-server
endif

ifeq ($(HOST_OS),Darwin)
DIRS += debugserver
endif

ifeq ($(ENABLE_WERROR),0)
DIRS += lldb-mi
endif

DIRS += driver

include $(LLDB_LEVEL)/Makefile