#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

CFLAGS = -Wall -g

configure = --prefix=/opt/vyatta --mandir=/usr/share/man CFLAGS="$(CFLAGS)"

%:
	dh $@ --with autoreconf,systemd

override_dh_auto_configure:
	dh_auto_configure -- $(configure)

# verbose output of unittest logs
override_dh_auto_test:
	dh_auto_test -- VERBOSE=1

override_dh_systemd_start:
	dh_systemd_start --no-start \
		vyatta-autoinstall.service \
