#
# Makefile  --	installs pd greek fonts (compressed) for X windows
#
# You must run this as root. It will install a bunch of publicly available
# fonts that I could find (thanks to Kostis Dryllerakis for telling me where
# to find them and for creating some of them).
#
# It will create a directory greek/ under /usr/lib/X11/fonts
# You will have to tell your X-server about the new font dir (see below).
# Ignore errors from the mkdir or cp commands.
#
# Note that many X servers do NOT like compressed fonts; in this case you will
# have to decompress them and ammend the fonts.dir file accordingly (or
# run mkfontdir). This installation should work with no problems for
# XFree 2.x (Linux + Free/Net BSD).
#
# You may define your font aliases in fonts.alias. Look in there for 
# the pre-defined ones.
# grfixed is an alias for an ELOT-928 font. Not all of the provided fonts
# are ELOT-928.
#
# IMPORTANT:
# If you find that I accidentally included a font that is NOT in the public 
# domain please send me mail and I will remove it. The problem is that there
# is not enough copyright info on the font files I managed to find.
#
# (c) Copyright 1994 A. Haritsis <ah@doc.ic.ac.uk>
#     Font files copyrighted by their authors.
#
# DISTRIBUTE FREELY PROVIDED THAT THIS HEADER IS KEPT.
# 

XFONTDIR=/usr/lib/X11/fonts

install:
	-mkdir $(XFONTDIR)/greek
	-cp *.pcf *.pcf.Z *.snf *.bdf fonts.* $(XFONTDIR)/greek/
	@echo 
	@echo 
	@echo "*** Greek fonts copied to directory: $(XFONTDIR)/greek ***"
	@echo 
	echo "Announce the new font dir: $(XFONTDIR) to the Xserver"
	@echo "You may use:"
	@echo "xset fp+ $(XFONTDIR)/greek"
	@echo "or permanently update your Xconfig file by adding the new font path"
	@echo "or, if you run fs, by adding the new font dir to the 'catalogue= ...' list"
	@echo 
