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

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

CXXFLAGS += $(CPPFLAGS)

DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)

%:
	dh $@

override_dh_auto_build:
	dh_auto_build
	dh_auto_build -Dosmjs

override_dh_auto_clean:
	dh_auto_clean
	dh_auto_clean -Dosmjs

override_dh_auto_install:
	dh_auto_install
	dh_auto_install -Dosmjs

override_dh_install:
	dh_install --list-missing

get-orig-source:
	. debian/get-orig-source

