1##===- source/Host/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
10LLDB_LEVEL := ../..
11
12include $(LLDB_LEVEL)/../../Makefile.config
13
14DIRS := common
15
16ifeq ($(HOST_OS),Darwin)
17DIRS += macosx
18endif
19
20ifeq ($(HOST_OS),Linux)
21DIRS += linux
22endif
23
24ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
25DIRS += freebsd
26endif
27
28include $(LLDB_LEVEL)/Makefile
29