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
|
#
# Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2004-2005 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2006-2022 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2010 Oracle and/or its affiliates. All rights
# reserved.
# Copyright (c) 2014-2019 Intel, Inc. All rights reserved.
# Copyright (c) 2016 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2021-2022 Nanook Consulting All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# This is a weird place for this, but config/ is the first directory that
# is entered, and the dist-hook runs at the end of the current directory,
# so this is the earliest we can run this test.
dist-hook:
@if test -n "$(PRTE_MAKEDIST_DISABLE)" ; then \
echo "#########################################################################"; \
echo "#"; \
echo "# make dist is disabled due to the following packages: $(PRTE_MAKEDIST_DISABLE)"; \
echo "#"; \
echo "#########################################################################"; \
exit 1; \
fi
EXTRA_DIST = \
distscript.sh \
prte_get_version.m4sh \
prte_get_version.sh \
ltmain_nag_pthread.diff \
ltmain_pgi_tp.diff \
prte_mca_priority_sort.pl \
find_common_syms \
getdate.sh \
from-savannah/upstream-config.guess \
from-savannah/upstream-config.sub
|