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