Blame MakeTools/Makefile

Packit 857059
# BEGIN_ICS_COPYRIGHT8 ****************************************
Packit Service 3f7ca0
#
Packit Service 3f7ca0
# Copyright (c) 2015-2020, Intel Corporation
Packit Service 3f7ca0
#
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 Service 3f7ca0
#
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 Service 3f7ca0
#
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 Service 3f7ca0
#
Packit 857059
# END_ICS_COPYRIGHT8   ****************************************
Packit 857059
# Makefile for MakeTools
Packit 857059
Packit 857059
# Include Make Control Settings
Packit 857059
include $(TL_DIR)/$(PROJ_FILE_DIR)/Makesettings.project
Packit 857059
Packit 857059
DS_SUBPROJECTS =
Packit 857059
DSP_SOURCES= Makefile \
Packit 857059
			buildmsgs.pl \
Packit 857059
			build_srpms.sh \
Packit 857059
			expand_source.sh \
Packit 857059
			expand_ofed.sh \
Packit 857059
			get_ofed_files.sh \
Packit 857059
			getsmpopt.sh \
Packit 857059
			get_comp.sh \
Packit 857059
			get_input_comp_files.sh \
Packit 857059
			lnshlib.sh \
Packit 857059
			lnshlib.darwin.sh \
Packit 857059
			ln-install.sh \
Packit 857059
			makeiso.sh \
Packit 857059
			mkarlib.sh \
Packit 857059
			builddsw.sh \
Packit 857059
			finddspfiles.sh \
Packit 857059
			makewin32depend.sh \
Packit 857059
			prep.sh \
Packit 857059
			unpack_comp.sh
Packit 857059
DIRS		= \
Packit 857059
			patch_version \
Packit 857059
			installtargets \
Packit 857059
			stripdepends \
Packit 857059
			rm_version \
Packit 857059
			$(TEST)
Packit 857059
CMD_TARGETS_MISC = \
Packit 857059
			builddsw \
Packit 857059
			build_srpms \
Packit 857059
			expand_source \
Packit 857059
			expand_ofed \
Packit 857059
			get_ofed_files \
Packit 857059
			get_comp \
Packit 857059
			get_input_comp_files \
Packit 857059
			finddspfiles \
Packit 857059
			ln-install \
Packit 857059
			makewin32depend \
Packit 857059
			unpack_comp
Packit 857059
ifeq "$(PRODUCT)" "devtools"
Packit 857059
CMD_TARGETS_MISC += 	prep \
Packit 857059
			patch_engineer_version \
Packit 857059
			convert_releasetag \
Packit 857059
			format_releasetag
Packit 857059
endif
Packit 857059
Packit 857059
INCLUDE_TARGETS		= 
Packit 857059
Packit 857059
include $(TL_DIR)/$(PROJ_FILE_DIR)/Makerules.project
Packit 857059
Packit 857059
include $(TL_DIR)/Makerules/Maketargets.toplevel
Packit 857059
Packit 857059
include $(TL_DIR)/Makerules/Maketargets.build
Packit 857059
convert_releasetag: convert_releasetag.pl
Packit 857059
	cp $< $@
Packit 857059
	chmod 755 $@
Packit 857059
Packit 857059
format_releasetag: format_releasetag.sh
Packit 857059
	cp $< $@
Packit 857059
	chmod 755 $@
Packit 857059
Packit 857059
include $(TL_DIR)/Makerules/Maketargets.stage
Packit 857059
Packit 857059
include $(TL_DIR)/Makerules/Maketargets.install
Packit 857059