#
# Makefile for the installtion of Type1 fonts
#

# directory to put the created pcf files
TOPDIR=../inst
FDIR = $(TOPDIR)/Type1

SHELL=/bin/sh
# --------------------- Compile bdf into pcf ---------------------------

all:
	@echo "Intalling Type1 Fonts ..."
	@-mkdir -p $(FDIR)
	-cp xinst_fonts *.pfb *.afm fonts.* README* $(FDIR)/
	mkfontdir $(FDIR)
	@echo To make your X server use them just do: $(FDIR)/xinst_fonts

pcf: all

pcfz: all
