Blame ShmemApps/Makefile

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
# Makefile for MpiApps
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
Packit 857059
DIRS			= 
Packit 857059
Packit 857059
include $(TL_DIR)/$(PROJ_FILE_DIR)/Makerules.project
Packit 857059
Packit 857059
INSTALL_TEST_APPS_SRC =	$(TL_DIR)/ShmemApps/apps/shmem_apps.tgz
Packit 857059
SHMEM_INSTALL_TESTS_DIR = $(PROJ_STAGE_DIR)/Tests/shmem
Packit 857059
Packit 857059
CLOBBER_EXTRA = \
Packit 857059
	.ICSBOOTROMVERSIONSTRING \
Packit 857059
	# add additional files here
Packit 857059
Packit 857059
.PHONEY: appl
Packit 857059
appl $(TL_DIR)/ShmemApps/apps/shmem_apps.tgz:
Packit 857059
	if [ -d apps ]; then \
Packit 857059
		cd apps; $(MAKE) -f Makefile.package $(MFLAGS) ALL; \
Packit 857059
	fi
Packit 857059
Packit 857059
Packit 857059
cleandepend clean:: clobber
Packit 857059
Packit 857059
clobber::
Packit 857059
	if [ -d apps ]; then \
Packit 857059
		cd apps; $(MAKE) -f Makefile.package $(MFLAGS) CLOBBER; \
Packit 857059
	fi
Packit 857059
depend::
Packit 857059
force::
Packit 857059
ALL:: INCLUDES LIBS CMDS
Packit 857059
INCLUDES::
Packit 857059
LIBS::
Packit 857059
# do the real work during CMDS
Packit 857059
CMDS:: $(INSTALL_TEST_APPS_SRC)
Packit 857059
Packit 857059
STAGE::
Packit 857059
	$(VS)if [ -d apps ]; then $(STAGE_INSTALL) $(STAGE_INSTALL_DIR_OPT) $(SHMEM_INSTALL_TESTS_DIR) $(INSTALL_TEST_APPS_SRC); fi
Packit 857059
	$(VS)if [ -d apps ]; then $(STAGE_INSTALL) $(STAGE_INSTALL_DIR_OPT) $(PROJ_STAGE_SRC_DIR)/shmem/shmem_apps $(INSTALL_TEST_APPS_SRC); fi
Packit 857059
Packit 857059
INSTALL::
Packit 857059
RUNTEST::
Packit 857059
build_dsfiles::
Packit 857059
clobber_dsfiles::
Packit 857059
lint::
Packit 857059
cflow::