-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
124 lines (98 loc) · 3.58 KB
/
Makefile
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# $PIP_license: <Simplified BSD License>
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
# THE POSSIBILITY OF SUCH DAMAGE.
# $
# $RIKEN_copyright: Riken Center for Computational Sceience (R-CCS),
# System Software Development Team, 2016-2020
# $
# $PIP_TESTSUITE: Version 1.0.0$
#
# $Author: Atsushi Hori (R-CCS) mailto: ahori@riken.jp or ahori@me.com
# $
top_builddir = .
top_srcdir = $(top_builddir)
srcdir = .
include $(top_srcdir)/build/var.mk
SUBDIRS_COMMON = bin pipcc utils basics pthread openmp cxx issues
SUBDIRS_V1 = $(SUBDIRS_COMMON) prog compat
SUBDIRS_V2 = $(SUBDIRS_COMMON) fortran prog compat
SUBDIRS_V3 = $(SUBDIRS_COMMON) fortran prog compat blt
SUBDIRS_CLEAN = $(SUBDIRS_COMMON) \
prog compat blt \
build include release \
pipgdb porting
include $(top_srcdir)/build/rule.mk
subdir-all subdir-debug :
@target=`expr $@ : 'subdir-\(.*\)'`; \
. $(top_srcdir)/config.sh; \
echo "version ${PIP_VERSION_MAJOR}"; \
case ${PIP_VERSION_MAJOR} in \
1) SUBDIRS="$(SUBDIRS_V1)" ;; \
2) SUBDIRS="$(SUBDIRS_V2)" ;; \
3) SUBDIRS="$(SUBDIRS_V3)" ;; \
*) echo "Unsupported PiP version"; exit 1;; \
esac; \
for dir in -- $${SUBDIRS}; do \
case $${dir} in --) continue;; esac; \
echo '[' making $${dir} ']'; \
make -C $${dir} $${target}; \
done
subdir-clean subdir-testclean subdir-veryclean :
@target=`expr $@ : 'subdir-\(.*\)'`; \
for dir in $(SUBDIRS_CLEAN); do \
echo '[' making $${dir} ']'; \
make -C $${dir} $${target}; \
done
all: subdir-all
echo ${PIP_VERSION} > .build_version
clean: subdir-clean
$(RM) .build_version
testclean: subdir-testclean
post-veryclean-hook:
$(RM) config.log config.status .build_version
$(RM) -r autom4te.cache
$(RM) config.sh build/config.mk
debug::
$(MAKE) subdir-debug;
TEST_LIST = test-v$(PIP_VERSION_MAJOR).list
test: all
./test.sh $(TEST_LIST)
test1: all
env PIP_TEST_THRESHOLD=1 ./test.sh $(TEST_LIST)
test2: all
env PIP_TEST_THRESHOLD=2 ./test.sh $(TEST_LIST)
test3: all
env PIP_TEST_THRESHOLD=3 ./test.sh $(TEST_LIST)
test4: all
env PIP_TEST_THRESHOLD=4 ./test.sh $(TEST_LIST)
test5: all
env PIP_TEST_THRESHOLD=5 ./test.sh $(TEST_LIST)
test6: all
env PIP_TEST_THRESHOLD=6 ./test.sh $(TEST_LIST)
test7: all
env PIP_TEST_THRESHOLD=7 ./test.sh $(TEST_LIST)
test8: all
env PIP_TEST_THRESHOLD=8 ./test.sh $(TEST_LIST)
test9: all
env PIP_TEST_THRESHOLD=9 ./test.sh $(TEST_LIST)
test10: all
env PIP_TEST_THRESHOLD=10 ./test.sh $(TEST_LIST)