blob: 72155ce576b1bb76d9b2e9934ec23d28a6d95094 [file] [log] [blame]
Greg Clayton54e7afa2010-07-09 20:39:50 +00001##===- 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
Greg Clayton8f3b21d2010-09-07 20:11:56 +000014DIRS := common
15
Greg Clayton54e7afa2010-07-09 20:39:50 +000016ifeq ($(HOST_OS),Darwin)
Greg Clayton8f3b21d2010-09-07 20:11:56 +000017DIRS += macosx
Greg Clayton54e7afa2010-07-09 20:39:50 +000018endif
19
Stephen Wilson76fd5dd2011-03-23 01:58:26 +000020ifeq ($(HOST_OS),Linux)
21DIRS += linux
22endif
23
Sylvestre Ledrufa2cd912013-07-01 08:21:36 +000024ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
Johnny Chen4b663292011-08-02 20:52:42 +000025DIRS += freebsd
26endif
27
Greg Clayton54e7afa2010-07-09 20:39:50 +000028include $(LLDB_LEVEL)/Makefile