# Run dvipdfm from dvipdf-style command-line
# Assume no options specified
# If this script is called from latexmk,
# we have $1=source.dvi, $2=dest.pdf
# But for safety, let's handle correctly a one argument call,
# i.e., $1=source, with no $2
if [ "$2" = "" ]; then
dvipdfm $1
else
dvipdfm -o $2 $1
fi