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