31 lines
975 B
Makefile
Raw Normal View History

##===- cling/lib/UserInterface/Makefile---------------------*- Makefile -*-===##
#
2014-01-07 09:55:59 +01:00
# The Cling Interpreter
#
2014-01-07 09:55:59 +01:00
# This file is dual-licensed: you can choose to license it under the University
# of Illinois Open Source License or the GNU Lesser General Public License. See
# LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
#
# This implements the a C++ interpreter user frontend.
#
##===----------------------------------------------------------------------===##
CLING_LEVEL = ../..
DIRS = textinput
LIBRARYNAME := clingUserInterface
BUILD_ARCHIVE = 1
CXXFLAGS = -fno-rtti
CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_SRC_DIR)/../../../clang/include \
2013-10-20 06:16:07 -07:00
-I$(PROJ_SRC_DIR)/../../../clang/lib \
-I$(PROJ_OBJ_DIR)/../../include \
-I$(PROJ_OBJ_DIR)/../../../clang/include \
-I$(DESTDIR)$(PROJ_includedir)
include $(CLING_LEVEL)/Makefile
2013-08-26 18:11:38 +02:00
CXX.Flags := $(subst -fno-exceptions,,$(CXX.Flags))