23 lines
804 B
Makefile
23 lines
804 B
Makefile
|
##===- cling/lib/MetaProcessor/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 a C++ interpreter user frontend.
|
||
|
#
|
||
|
##===----------------------------------------------------------------------===##
|
||
|
|
||
|
CLING_LEVEL = ../..
|
||
|
LIBRARYNAME := clingMetaProcessor
|
||
|
BUILD_ARCHIVE = 1
|
||
|
CXXFLAGS = -fno-rtti
|
||
|
|
||
|
CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_SRC_DIR)/../../../clang/include \
|
||
|
-I$(PROJ_SRC_DIR)/../../../clang/lib -I$(PROJ_OBJ_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../../clang/include
|
||
|
|
||
|
include $(CLING_LEVEL)/Makefile
|