# Merge PostScript files.  Take the first file in its entirety,
# then append the remaining files without the prologue.
#
# The resulting file still isn't complete, since it needs the trailers
# removed as well, but it's usually small enough for mergeps.el to
# do its stuff.
cat $1
while [ $2 ]; do
  ../../../tools/striphead -t %%EndProlog $2
  shift
done

