File: rules

package info (click to toggle)
elpa 2016.05.001-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,048 kB
  • ctags: 1,198
  • sloc: f90: 18,180; ansic: 9,178; sh: 4,400; asm: 437; makefile: 325; perl: 73
file content (41 lines) | stat: -rwxr-xr-x 1,178 bytes parent folder | download
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
#!/usr/bin/make -f
# -*- makefile -*-

include /usr/share/mpi-default-dev/debian_defaults

export OMPI_MCA_plm_rsh_agent=/bin/false
export LIBS=-lblacs-$(ARCH_DEFAULT_MPI_IMPL) -lblacsCinit-$(ARCH_DEFAULT_MPI_IMPL) -lscalapack-$(ARCH_DEFAULT_MPI_IMPL)
# The gold linker is currently broken on mips64el. See #851736.
# Switch to bfd as a temporary workaround.
ifneq ($(filter $(DEB_BUILD_ARCH), mips64el),)
	export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed -Wl,-fuse-ld=bfd
else
	export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed
endif

export TEST_FLAGS?=2000 750 8

ifneq (,$(filter $(DEB_HOST_ARCH), mips mipsel powerpc))
	export TEST_FLAGS=200 12 2
endif

ifneq (,$(filter $(DEB_HOST_ARCH), mipsel powerpc))
        export MPIEXEC=mpiexec -n 1
endif

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- --disable-silent-rules

ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
	@echo "Running tests with matrix size ${ELPA_TEST_SCALE}"
	$(MAKE) -j1 check || cat test-suite.log
	grep Total.time *.log
	grep -A1 ^Matrix.size *.log
	./elpa2_print_kernels
	# error out in case of test suite failures
	if grep ^FAIL test-suite.log; then exit 1; fi
endif