1DEV=ascii
2FONTS=R I B BI
3DEVFILES=$(FONTS) DESC
4CLEANADD=$(FONTS) DESC
5
6RES=240
7CPI=10
8LPI=6
9
10$(FONTS): R.proto
11	@echo Making $@
12	@-rm -f $@
13	@(charwidth=`expr $(RES) / $(CPI)` ; \
14 	 sed -e "s/^name [A-Z]*$$/name $@/" \
15	     -e "s/^\\([^	]*\\)	[0-9]+	/\\1	$$charwidth	/" \
16	     -e "s/^spacewidth [0-9]+$$/spacewidth $$charwidth/" \
17	     -e "s/^internalname .*$$/internalname $@/" \
18	     -e "/^internalname/s/BI/3/" \
19	     -e "/^internalname/s/B/2/" \
20	     -e "/^internalname/s/I/1/" \
21	     -e "/^internalname .*[^ 0-9]/d" \
22	     $(srcdir)/R.proto >$@)
23
24DESC: DESC.proto
25	@echo Making $@
26	@-rm -f $@
27	@sed -e "s/^res .*$$/res $(RES)/" \
28	    -e "s/^hor .*$$/hor `expr $(RES) / $(CPI)`/" \
29	    -e "s/^vert .*$$/vert `expr $(RES) / $(LPI)`/" \
30	    -e "s/^fonts .*$$/fonts `set $(FONTS); echo $$#` $(FONTS)/" \
31	    $(srcdir)/DESC.proto >$@
32