ocaml/config/auto-aux/tryassemble

8 lines
158 B
Bash

#!/bin/sh
if test "$verbose" = yes; then
echo "tryassemble: $aspp -o tst $*" >&2
$aspp -o tst $* || exit 100
else
$aspp -o tst $* 2> /dev/null || exit 100
fi