#$Header:Makefile 12.0$
#$ACIS:Makefile 12.0$
#$Source: /ibm/acis/usr/src/usr.lib/font/dev3812/typographic/RCS/Makefile,v $
#
# Build and install the fonts and the ditroff width files (.out) 
# in the DESTDIR. The default for R I B and BI are the Serif Fonts.
#
# Each sub-directory is another set of fonts for the IBM 3812 Pageprinter.  
#
# The sub-directory 'Afont' contains the additional special Serif chacters.
#
# The 'serif', 'sans', and 'pispecial' sub-directories contain Makefiles
# to build and install the appropriate fonts.  The fonts themselves are
# not originally in these directories.  They have to be purchased 
# separately from IBM and loaded into the appropriate sub-directory.
# If the fonts do not exist, a 'make' in these sub-directories will 
# exit with an error.
#
# This install step is dependent on the ditroff feature for IBM 3812 Pageprinter

DESTDIR=         

# Once you have loaded the licensed fonts into their respective directories
# you will probably want to replace the current SUBDIR line with this line:
#
#SUBDIRS= Afont sans serif pispecial
#
# so that these directories get made during any subsequent calls to 'make'.
SUBDIRS= Afont

all: 
	for i in ${SUBDIRS}; do (cd $$i; make ${MFLAGS} all) ; done

install: 
	for i in ${SUBDIRS}; do (cd $$i; make DESTDIR=${DESTDIR} install);done

clean:
	for i in ${SUBDIRS}; do (cd $$i; make clean);done
