-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile.am
71 lines (57 loc) · 1.62 KB
/
Makefile.am
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
#
# This file is part of DUMPI:
# The MPI profiling library from the SST suite.
# Copyright (c) 2009-2023 NTESS.
# This software is distributed under the BSD License.
# Under the terms of Contract DE-NA0003525 with NTESS,
# the U.S. Government retains certain rights in this software.
# For more information, see the LICENSE file in the top
# SST/macroscale directory.
#
EXTRA_DIST = LICENSE
SUBDIRS = dumpi tests
ACLOCAL_AMFLAGS = -I acinclude
.PHONEY: doc
doc:
cd docs && doxygen doxygen.cfg
#doc-install: doc
# $(INSTALL) -d docs/sst-macroscale @docdir@
if WITH_LIBDUMPI
libdumpi:
cd dumpi/common && make
cd dumpi/libdumpi && make
libdumpi-install: libdumpi
cd dumpi/libdumpi && make install
endif
if WITH_LIBUNDUMPI
libundumpi:
cd dumpi/common && make
cd dumpi/libundumpi && make
libundumpi-install: libundumpi
cd dumpi/libundumpi && make install
endif
if WITH_OTF2
libotf2dump:
cd dumpi/libotf2dump && make
libotf2dump-install: libotf2dump
cd dumpi/libotf2dump && make install
endif
if WITH_BIN
dumpi2ascii:
cd dumpi/libundumpi && make
cd dumpi/bin && make dumpi2ascii
dumpi2otf2: libotf2dump
cd dumpi/libundumpi && make
cd dumpi/bin && make dumpi2otf2
endif
if WITH_TEST
testmpi:
cd dumpi/libdumpi && make
cd dumpi/bin && make testmpi
endif
superclean: distclean
rm -rf configure autom4te.cache aclocal.m4
rm -f acinclude/ltsugar.m4 acinclude/libtool.m4 acinclude/ltversion.m4 acinclude/lt~obsolete.m4 acinclude/ltoptions.m4
rm -f bin/depcomp bin/missing bin/config.guess bin/config.sub bin/ltmain.sh bin/install-sh
find . -name Makefile.in | xargs rm -f
rm -f dumpi/dumpiconfig.h.in