#!/usr/bin/make -f
# -*- makefile -*-

include /usr/share/dpkg/architecture.mk

ifeq ($(DEB_HOST_ARCH_BITS), 32)
  export CXXFLAGS=-g1 -O2 -std=c++11
else
  export CXXFLAGS=-g -O2 -std=c++11
endif
ifeq ($(DEB_HOST_ARCH), armel)
  export LDFLAGS=-latomic
endif

export OMPI_MCA_orte_rsh_agent=/bin/false

%:
	dh $@ --buildsystem=cmake

override_dh_auto_configure:
	dh_auto_configure -- 		\
		-DMPI_C_COMPILER=mpicc	\
		-DMPQC_NEW_FEATURES=1	\
		-DBOOST=/usr

override_dh_auto_install:
	dh_auto_install
	mv $(CURDIR)/debian/tmp/usr/bin/mpqc \
	   $(CURDIR)/debian/tmp/usr/bin/mpqc3

ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
override_dh_auto_test:
	-(cd obj-*/test; make check0)
endif
