#!/usr/bin/make -f

SHELL := /bin/bash

export DEB_CFLAGS_MAINT_APPEND=$(shell dpkg-buildflags --get CPPFLAGS)
export DEB_CXXFLAGS_MAINT_APPEND=$(shell dpkg-buildflags --get CPPFLAGS)
export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed

override_dh_auto_configure:
	python3 ./configure.py --bootstrap --verbose

override_dh_auto_build:
	./ninja -v all

override_dh_auto_install:

override_dh_auto_test:

override_dh_auto_clean:

%:
	dh $@
