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

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

TARGET_BUILD=iwyu-build
VERSION=$(shell dpkg-parsechangelog |grep "^Version:"|sed -e "s|Version: \(.*\)|\1|")

%:
	dh $@ --buildsystem=cmake --builddirectory=$(TARGET_BUILD)

override_dh_auto_configure:
	dh_auto_configure -- -DLLVM_PATH=/usr/lib/llvm-3.3/

override_dh_auto_build:
	dh_auto_build
	help2man --version-string "$(VERSION)" -n "Analyze #includes in C and C++ source files" $(TARGET_BUILD)/include-what-you-use > $(TARGET_BUILD)/include-what-you-use.1
	cd $(TARGET_BUILD) && ln -s include-what-you-use.1 iwyu.1
