diff options
Diffstat (limited to 'lldb/source/Host/Makefile')
-rw-r--r-- | lldb/source/Host/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lldb/source/Host/Makefile b/lldb/source/Host/Makefile new file mode 100644 index 00000000000..76e3d34ff43 --- /dev/null +++ b/lldb/source/Host/Makefile @@ -0,0 +1,20 @@ +##===- source/Host/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 + +ifeq ($(HOST_OS),Darwin) +DIRS := macosx posix +else +DIRS := linux posix +endif + +include $(LLDB_LEVEL)/Makefile |