File: Makefile.am

package info (click to toggle)
mpich 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 251,828 kB
  • sloc: ansic: 1,323,147; cpp: 82,869; f90: 72,420; javascript: 40,763; perl: 28,296; sh: 19,399; python: 16,191; xml: 14,418; makefile: 9,468; fortran: 8,046; java: 4,635; pascal: 352; asm: 324; ruby: 176; awk: 27; lisp: 19; php: 8; sed: 4
file content (75 lines) | stat: -rw-r--r-- 2,025 bytes parent folder | download | duplicates (9)
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
# Copyright © 2009-2021 Inria.  All rights reserved.
# Copyright © 2009-2010 Université Bordeaux
# Copyright © 2009-2014 Cisco Systems, Inc.  All rights reserved.
# Copyright © 2011      Oracle and/or its affiliates.  All rights reserved.
# See COPYING in top-level directory.

# Only install the headers if we're in standalone mode (meaning:
# *don't* install the headers if we're in embedded mode).

if HWLOC_BUILD_STANDALONE
include_HEADERS = hwloc.h

if BUILD_NETLOCSCOTCH
include_HEADERS += netloc.h netlocscotch.h
endif

include_hwlocdir = $(includedir)/hwloc
include_hwloc_HEADERS = \
        hwloc/bitmap.h \
        hwloc/helper.h \
        hwloc/inlines.h \
        hwloc/memattrs.h \
        hwloc/cpukinds.h \
        hwloc/diff.h \
        hwloc/shmem.h \
        hwloc/distances.h \
        hwloc/export.h \
        hwloc/openfabrics-verbs.h \
        hwloc/opencl.h \
        hwloc/cuda.h \
        hwloc/cudart.h \
        hwloc/nvml.h \
        hwloc/rsmi.h \
        hwloc/levelzero.h \
        hwloc/plugins.h \
        hwloc/gl.h \
        hwloc/rename.h \
        hwloc/deprecated.h
include_hwloc_autogendir = $(includedir)/hwloc/autogen
nodist_include_hwloc_autogen_HEADERS = hwloc/autogen/config.h

noinst_HEADERS = \
        private/private.h \
        private/debug.h \
        private/misc.h \
        private/xml.h \
        private/components.h \
        private/internal-components.h \
        private/cpuid-x86.h \
        private/windows.h \
        private/netloc.h \
        netloc/utarray.h \
        netloc/uthash.h

if HWLOC_HAVE_LINUX
include_hwloc_HEADERS += \
        hwloc/linux.h \
        hwloc/linux-libnuma.h
endif HWLOC_HAVE_LINUX

if HWLOC_HAVE_SOLARIS
include_hwloc_HEADERS += \
       private/solaris-chiptype.h
endif HWLOC_HAVE_SOLARIS

if HWLOC_HAVE_SCHED_SETAFFINITY
include_hwloc_HEADERS += hwloc/glibc-sched.h
endif HWLOC_HAVE_SCHED_SETAFFINITY

if HWLOC_HAVE_WINDOWS
include_hwloc_HEADERS += \
	hwloc/windows.h
endif HWLOC_HAVE_WINDOWS

endif HWLOC_BUILD_STANDALONE