#!/bin/sh
#
# Pre-build helper script
#
# 1. Generate control from control.pcp and the non-optional
#    control.foo fragments so that control can be included in the tarball
#    (for vanilla Debian builds that do not use ../Makepkgs).
#

rm -f control
if make control
then
    exit 0
else
    exit 1
fi
