1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# BEGIN_ICS_COPYRIGHT8 ****************************************
#
# Copyright (c) 2015, Intel Corporation
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of Intel Corporation nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# END_ICS_COPYRIGHT8 ****************************************
# Makefile for TestTools
# Include Make Control Settings
include $(TL_DIR)/$(PROJ_FILE_DIR)/Makesettings.project
# This makefile is an oddball, it is the only test Makefile
# which actually builds code.
# even then it only builds some scripts and a tclIndex file.
# hence for simplicity it is handcoded and does not use any makerules
#=============================================================================#
# Definitions:
#-----------------------------------------------------------------------------#
# Name of SubProjects
DS_SUBPROJECTS =
# name of executable or downloadable image
EXECUTABLE = # TestTools$(EXE_SUFFIX)
# list of sub directories to build
DIRS =
# C files (.c)
CFILES = \
qlgc_fork.c \
# Add more c files here
# C++ files (.cpp)
CCFILES = \
# Add more cpp files here
# lex files (.lex)
LFILES = \
# Add more lex files here
# archive library files (basename, $ARFILES will add MOD_LIB_DIR/prefix and suffix)
LIBFILES =
TCL_SOURCES = proc_mgr.exp tools.exp target.exp chassis.exp basic.exp \
network.exp install.exp ib.exp extmng.exp mpi.exp opa_to_xml.exp common_funcs.exp sm_control.exp switch_methods.exp
# Windows Resource Files (.rc)
RSCFILES =
# Windows IDL File (.idl)
IDLFILE =
# Windows Linker Module Definitions (.def) file for dll's
DEFFILE =
# targets to build during INCLUDES phase (add public includes here)
INCLUDE_TARGETS = \
# Add more h hpp files here
# Non-compiled files
MISC_FILES =
# all source files
SOURCES = $(CFILES) $(CCFILES) $(LFILES) $(RSCFILES) $(IDLFILE)
# Source files to include in DSP File
DSP_SOURCES = $(INCLUDE_TARGETS) $(SOURCES) $(MISC_FILES) \
$(RSCFILES) $(DEFFILE) $(MAKEFILE)
# all object files
OBJECTS = $(CFILES:.c=$(OBJ_SUFFIX)) $(CCFILES:.cpp=$(OBJ_SUFFIX)) \
$(LFILES:.lex=$(OBJ_SUFFIX))
RSCOBJECTS = $(RSCFILES:.rc=$(RES_SUFFIX))
# targets to build during LIBS phase
LIB_TARGETS_IMPLIB =
LIB_TARGETS_ARLIB =
LIB_TARGETS_EXP = $(LIB_TARGETS_IMPLIB:$(ARLIB_SUFFIX)=$(EXP_SUFFIX))
LIB_TARGETS_MISC =
# targets to build during CMDS phase
CMD_TARGETS_SHLIB = $(LIB_PREFIX)qlgc_fork$(SHLIB_SUFFIX)
CMD_TARGETS_EXE = $(EXECUTABLE)
CMD_TARGETS_MISC = tclIndex front
# files to remove during clean phase
CLEAN_TARGETS_MISC =
CLEAN_TARGETS = $(OBJECTS) $(RSCOBJECTS) $(IDL_TARGETS) $(CLEAN_TARGETS_MISC)
# other files to remove during clobber phase
CLOBBER_TARGETS_MISC=$(CMD_TARGETS_MISC)
# sub-directory to install to within bin
BIN_SUBDIR =
# sub-directory to install to within include
INCLUDE_SUBDIR =
# Additional Settings
#CLOCALDEBUG = User defined C debugging compilation flags [Empty]
#CCLOCALDEBUG = User defined C++ debugging compilation flags [Empty]
#CLOCAL = User defined C flags for compiling [Empty]
#CCLOCAL = User defined C++ flags for compiling [Empty]
#BSCLOCAL = User flags for Browse File Builder [Empty]
#DEPENDLOCAL = user defined makedepend flags [Empty]
#LINTLOCAL = User defined lint flags [Empty]
#LOCAL_INCLUDE_DIRS = User include directories to search for C/C++ headers [Empty]
#LDLOCAL = User defined C flags for linking [Empty]
#IMPLIBLOCAL = User flags for Object Lirary Manager [Empty]
#MIDLLOCAL = User flags for IDL compiler [Empty]
#RSCLOCAL = User flags for resource compiler [Empty]
#LOCALDEPLIBS = User libraries to include in dependencies [Empty]
#LOCALLIBS = User libraries to use when linking [Empty]
# (in addition to LOCALDEPLIBS)
#LOCAL_LIB_DIRS = User library directories for libpaths [Empty]
CLOCAL=-DUSE_TCL_STUBS $(CPIC)
# tcl.h is located in /usr/include for RedHat and in /usr/include/tcl for Ubuntu
LOCAL_INCLUDE_DIRS = /usr/include/tcl
LOCALLIBS=$(shell if [ -e /usr/lib64/libtclstub.a -o -e /usr/lib/libtclstub.a -o -e /usr/lib/x86_64-linux-gnu/libtclstub.a ]; then echo tclstub; \
elif [ -e /usr/lib64/libtclstub8.6.a -o -e /usr/lib/libtclstub8.6.a -o -e /usr/lib/x86_64-linux-gnu/libtclstub8.6.a ]; then echo tclstub8.6; \
elif [ -e /usr/lib64/libtclstub8.5.a -o -e /usr/lib/libtclstub8.5.a -o -e /usr/lib/x86_64-linux-gnu/libtclstub8.5.a ]; then echo tclstub8.5; \
else echo tclstub8.4; fi)
# Include Make Rules definitions and rules
include $(TL_DIR)/$(PROJ_FILE_DIR)/Makerules.project
#=============================================================================#
# Overrides:
#-----------------------------------------------------------------------------#
#CCOPT = # C++ optimization flags, default lets build config decide
#COPT = # C optimization flags, default lets build config decide
#SUBSYSTEM = Subsystem to build for (none, console or windows) [none]
# (Windows Only)
#USEMFC = How Windows MFC should be used (none, static, shared, no_mfc) [none]
# (Windows Only)
#=============================================================================#
#=============================================================================#
# Rules:
#-----------------------------------------------------------------------------#
# process Sub-directories
include $(TL_DIR)/Makerules/Maketargets.toplevel
# build cmds and libs
include $(TL_DIR)/Makerules/Maketargets.build
ifeq "$(BUILD_TARGET)" "PPC64"
# must build for 32 bit on PPC64, 64 bit TCL library not available
LDMACH=-m32
%.o: %.c
$(VS)$(CC) $(subst -m64,-m32,$(CFLAGS)) -c $<
endif
# used to copy CMD_TARGETS from this directory to $TL_DIR
$(TL_DIR)/%: %
rm -f $@
cp $^ $@
# index for autoloading Tcl procedures, remove first in case a symlink
tclIndex: $(TCL_SOURCES)
rm -f tclIndex
echo auto_mkindex . $^|tclsh
echo '# [ICS VERSION STRING: unknown]' >> tclIndex
cat qlgc_fork.pkgIndex >> tclIndex
# install for includes, libs and cmds phases
include $(TL_DIR)/Makerules/Maketargets.install
# install for stage phase
#include $(TL_DIR)/Makerules/Maketargets.stage
STAGE::
$(VS)$(STAGE_INSTALL) $(STAGE_INSTALL_DIR_OPT) $(PROJ_STAGE_IBTOOLS_DIR) tclIndex $(TCL_SOURCES) front ibtools.exp $(CMD_TARGETS_SHLIB)
# Unit test execution
#include $(TL_DIR)/Makerules/Maketargets.runtest
#=============================================================================#
#=============================================================================#
# DO NOT DELETE THIS LINE -- make depend depends on it.
#=============================================================================#
|