mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-07 08:34:59 +00:00
7a51313d8a
lib dir and move all the libraries into it. This follows the main llvm tree, and allows the libraries to be built in parallel. The top level now enforces that all the libs are built before Driver, but we don't care what order the libs are built in. This speeds up parallel builds, particularly incremental ones. llvm-svn: 48402
23 lines
656 B
Makefile
23 lines
656 B
Makefile
##===- clang/lib/Parse/Makefile ----------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
#
|
|
# This implements the Parser library for the C-Language front-end.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../../../..
|
|
LIBRARYNAME := clangParse
|
|
BUILD_ARCHIVE = 1
|
|
CXXFLAGS = -fno-rtti
|
|
|
|
CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|