mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 10:01:42 +00:00
f7639e1b4a
the new Objective-C NSArray/NSDictionary/NSNumber literal syntax. This introduces a new library, libEdit, which provides a new way to support migration of code that improves on the original ARC migrator. We now believe that most of its functionality can be refactored into the existing libraries, and thus this new library may shortly disappear. llvm-svn: 152141
17 lines
580 B
Makefile
Executable File
17 lines
580 B
Makefile
Executable File
##===- lib/Makefile ----------------------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
CLANG_LEVEL := ..
|
|
|
|
PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis \
|
|
StaticAnalyzer Edit Rewrite ARCMigrate Serialization Frontend \
|
|
FrontendTool Index Driver
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|