#!/bin/sh
set -e
PROGRAMS="a2ps"
for a in ${PROGRAMS}; do
  ln -sf /usr/bin/${a} src/${a}
done
make -C tests check
