#
#	Makefile for 1280 font prom.  10/9/85
#
#
# This version obsoletes the font prom distributed
# in Rev 1.0 of the 1280 firmware.  The special 
# fonts used by the VT100 prom are here now (ran
# out of room in the VT100 prom).  This change affects
# the VT100 and dispatcher proms - the silly curves
# are still in here (for now, maybe not in next release).
#

ASM = wa
OPT = -as
H = /u0/roy/kernel/new

prohead =	$H/proto.h $H/dac.h $H/simple/intrp.h

fontsrcs =	f1280.asm fnt79.asm\
		vtfnt.asm vtfnt7.asm\
		logo.asm hcur.asm  sier.asm 
oldsrcs =	f1280.asm fnt79.asm\
		hcur.asm  sier.asm 

fonts:  $(prohead) $(fontsrcs)
	$(ASM) $(OPT) $(prohead) $(fontsrcs) >fonts.sym
	mv m.out fonts.out

old:  $(prohead) $(oldsrcs)
	$(ASM) $(OPT) $(prohead) $(oldsrcs)

