freebsd-dev/gnu/usr.bin/groff/Makefile.tty

33 lines
856 B
Makefile
Raw Normal View History

2000-12-05 19:15:36 +00:00
# $FreeBSD$
1996-09-08 01:27:58 +00:00
.MAIN: all
RES=240
CPI=10
LPI=6
FONTS=R I B BI S L CW
1996-09-08 01:27:58 +00:00
DEVFILES=$(FONTS) DESC
CLEANFILES=$(DEVFILES)
$(FONTS): R.proto
@${ECHO} Making $@
2000-12-05 19:15:36 +00:00
@(charwidth=`expr $(RES) / $(CPI)` ; \
1996-09-08 01:27:58 +00:00
sed -e "s/^name [A-Z]*$$/name $@/" \
-e "s/^\\([^ ]*\\) [0-9]+ /\\1 $$charwidth /" \
-e "s/^spacewidth [0-9]+$$/spacewidth $$charwidth/" \
-e "s/^internalname .*$$/internalname $@/" \
-e "/^internalname/s/BI/3/" \
-e "/^internalname/s/B/2/" \
-e "/^internalname/s/I/1/" \
-e "/^internalname .*[^ 0-9]/d" \
${DIST_DIR}/R.proto >$@)
1996-09-08 01:27:58 +00:00
DESC: DESC.proto
@${ECHO} Making $@
@sed -e "s/^res .*$$/res $(RES)/" \
2000-12-05 19:15:36 +00:00
-e "s/^hor .*$$/hor `expr $(RES) / $(CPI)`/" \
-e "s/^vert .*$$/vert `expr $(RES) / $(LPI)`/" \
1996-09-08 01:27:58 +00:00
-e "s/^fonts .*$$/fonts `set $(FONTS); echo $$#` $(FONTS)/" \
${DIST_DIR}/DESC.proto >$@