mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-25 10:48:14 +00:00
d31113f0b9
Summary: These changes are still incomplete, but we are almost there. Changes: - CMake and gmake code - SWIG code - minor code additions Reviewers: emaste, joerg Subscribers: youri, akat1, brucem, lldb-commits, joerg Differential Revision: http://reviews.llvm.org/D14042 llvm-svn: 252403
31 lines
704 B
Makefile
31 lines
704 B
Makefile
##===- 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
|