#!/usr/bin/make -f

# Set up the variables the Gitano makefile needs
PREFIX:=/usr
export PREFIX
LUA_VER:=5.1
export LUA_VER

# And Debhelper the world

%:
	dh $@

override_dh_auto_build:
	make
	make -C doc/admin PANDOC_ARGS_CHAPTERS=--top-level-division=chapter
