summaryrefslogtreecommitdiff
path: root/support/latexmk/extra-scripts/dvipdfmx_call
blob: 9ff04c4bdc22f86472d1890c286b605efd465be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Run dvipdfmx 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
   dvipdfmx $1
else
   dvipdfmx -o $2 $1
fi