Blame MakeTemplates/Makesettings.project

Packit 857059
# BEGIN_ICS_COPYRIGHT8 ****************************************
Packit 857059
# 
Packit 857059
# Copyright (c) 2015, Intel Corporation
Packit 857059
# 
Packit 857059
# Redistribution and use in source and binary forms, with or without
Packit 857059
# modification, are permitted provided that the following conditions are met:
Packit 857059
# 
Packit 857059
#     * Redistributions of source code must retain the above copyright notice,
Packit 857059
#       this list of conditions and the following disclaimer.
Packit 857059
#     * Redistributions in binary form must reproduce the above copyright
Packit 857059
#       notice, this list of conditions and the following disclaimer in the
Packit 857059
#       documentation and/or other materials provided with the distribution.
Packit 857059
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
#       may be used to endorse or promote products derived from this software
Packit 857059
#       without specific prior written permission.
Packit 857059
# 
Packit 857059
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
# 
Packit 857059
# END_ICS_COPYRIGHT8   ****************************************
Packit 857059
## Make Settings at project level
Packit 857059
#=============================================================================#
Packit 857059
## Project Make Settings File
Packit 857059
## -----------------------
Packit 857059
##
Packit 857059
## This file allows setting variables which can be used by Makefiles to make
Packit 857059
## decisions on which targets or DIRS to build.  This allows such controls
Packit 857059
## to be placed here as opposed to extending the build system environment
Packit 857059
## variable tools like setenv, target, etc.
Packit 857059
##
Packit 857059
## All tools local makefiles should include this makerules file before its own
Packit 857059
## local definitions section.  Use
Packit 857059
## Makefile.template as a base makefile and modify the template according to
Packit 857059
## your application needs.  The template makefile includes this file
Packit 857059
## and this project makesettings file includes the global makesettings file.
Packit 857059
## Any modifications to this makesettings file or to local makefiles should be
Packit 857059
## made in a portable fashion using 'ifdef' structures where necessary so that
Packit 857059
## the same makefile can be used on multiple platforms.
Packit 857059
## The main purpose of this
Packit 857059
## include makesettings file is for local variable definitions 
Packit 857059
## specific to the project at hand.  Global modifications should be made in the
Packit 857059
## global makesettings file and local items should be in the local makefile, not
Packit 857059
## in this makesettings file.
Packit 857059
## Any modifications to the source should be made with
Packit 857059
## portability in mind and should follow the embedded notations.  Documentation
Packit 857059
## is automatically generated from this makefile!  Use the correct conventions
Packit 857059
## for those items which should be documented.
Packit 857059
##
Packit 857059
## NOTE: This makefile inclusion (the global makesettings, and the template
Packit 857059
##       makefile) depend on using the GNU version of make.  GNU make must be
Packit 857059
##       installed on your system prior to using this makefile.
Packit 857059
#=============================================================================#
Packit 857059
##
Packit 857059
#=============================================================================#
Packit 857059
# The following list is the standard list of settings which will be defined
Packit 857059
# for all platforms.  It consists of general and machine specific sections that
Packit 857059
# contain many system parameters which may be used in a makefile.  Please keep
Packit 857059
# the list(s) in strictly aphabetical order to facilitate simple searches.
Packit 857059
#
Packit 857059
# See Makerules.global for the meaning of these flags
Packit 857059
#-----------------------------------------------------------------------------#
Packit 857059
# Common platform definitions:
Packit 857059
#-----------------------------------------------------------------------------#
Packit 857059
Packit 857059
IB_STACK=OPENIB
Packit 857059
#PROJ_SM_DIR=$(TL_DIR)/Esm/ib
Packit 857059
Packit 857059
#-----------------------------------------------------------------------------#
Packit 857059
# Platform specific definitions:
Packit 857059
#-----------------------------------------------------------------------------#
Packit 857059
ifeq "$(BUILD_TARGET_OS)" "VXWORKS"
Packit 857059
endif # VXWORKS
Packit 857059
#ifeq "$(BUILD_TARGET_OS)" "DARWIN"
Packit 857059
#endif # DARWIN
Packit 857059
ifeq "$(BUILD_TARGET_OS)" "LINUX"
Packit 857059
endif # LINUX
Packit 857059
ifeq "$(BUILD_TARGET_OS)" "WIN32"
Packit 857059
endif # WIN32
Packit 857059
#=============================================================================#
Packit 857059
#=============================================================================#
Packit 857059
## TL_DIR must be set in the environment for the 'make' to succeed.
Packit 857059
## icsmake will do this for you
Packit 857059
#-----------------------------------------------------------------------------#
Packit 857059
# Include Global makerules definitions and rules
Packit 857059
include $(TL_DIR)/Makerules/Makesettings.global
Packit 857059
#=============================================================================#