#!/bin/sh

# Build binary packages

topdir=`pwd`

for i in $topdir/debian/*.files; do
  pkg=`basename $i .files`
#  echo "Building binary packages for package $pkg"
  dpkg-deb --build debian/tmp/$pkg ..
done

