#
# Stupid dvips can't handle removing files from the
# config list once they've been added. Since the default
# printer (ps) wants to include the contents of cmfonts.map,
# but other printers want to exclude them, the only way to
# do this is to toss everything together into one large
# file that can be overridden for each printer.
#
# One final complication: psfonts.map is the default
# ps map file, so -Ppsfonts can't use that as the name.
#
# You are not expected to understand this.
#
all:V: bitmapfonts.map psfonts.map ps.map psfontsdevice.map
bitmapfonts.map: psfonts.map
cat $prereq >$target
psfontsdevice.map: psfonts.mapdl cmfonts.mapdl
cat $prereq >$target
ps.map: psfonts.map cmfonts.map
cat $prereq >$target
|