Home | History | Annotate | Line # | Download | only in devutf8
      1 DEV=utf8
      2 FONTS=R I B BI
      3 DEVFILES=$(FONTS) DESC
      4 CLEANADD=$(FONTS) DESC
      5 
      6 RES=240
      7 CPI=10
      8 LPI=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 
     24 DESC: 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 
     33