Home | History | Annotate | Line # | Download | only in devlj4
Makefile.sub revision 1.1
      1  1.1  christos DEV=lj4
      2  1.1  christos LJ4RES=1200
      3  1.1  christos LJ4PRINT=$(PSPRINT)
      4  1.1  christos DEVFILES=DESC \
      5  1.1  christos   AB ABI AI AR \
      6  1.1  christos   ALBB ALBR \
      7  1.1  christos   AOB AOI AOR \
      8  1.1  christos   CB CBI CI CR \
      9  1.1  christos   GB GBI GI GR \
     10  1.1  christos   LGB LGI LGR \
     11  1.1  christos   OB OBI OI OR \
     12  1.1  christos   TB TBI TI TR \
     13  1.1  christos   TNRB TNRBI TNRI TNRR \
     14  1.1  christos   UB UBI UI UR \
     15  1.1  christos   UCB UCBI UCI UCR \
     16  1.1  christos   CLARENDON CORONET MARIGOLD S \
     17  1.1  christos   SYMBOL WINGDINGS \
     18  1.1  christos   generate/Makefile \
     19  1.1  christos   generate/special.map \
     20  1.1  christos   generate/symbol.map \
     21  1.1  christos   generate/text.map \
     22  1.1  christos   generate/wingdings.map \
     23  1.1  christos   generate/special.awk
     24  1.1  christos 
     25  1.1  christos CLEANADD=DESC
     26  1.1  christos 
     27  1.1  christos DESC: DESC.in
     28  1.1  christos 	-rm -f DESC
     29  1.1  christos 	echo "res $(LJ4RES)" >DESC
     30  1.1  christos 	echo "unitwidth `expr 7620000 / $(LJ4RES)`" >>DESC
     31  1.1  christos 	cat $(srcdir)/DESC.in >>DESC
     32  1.1  christos 	if test "$(PAGE)" = A4; then \
     33  1.1  christos 	  echo "papersize a4" >>DESC; \
     34  1.1  christos 	else \
     35  1.1  christos 	  echo "papersize letter" >>DESC; \
     36  1.1  christos 	fi
     37  1.1  christos 	test -z '$(LJ4PRINT)' || echo print '$(LJ4PRINT)' >>DESC
     38  1.1  christos 
     39  1.1  christos fonts:
     40  1.1  christos 	$(MAKE) -f $(srcdir)/generate/Makefile srcdir=$(srcdir)/generate \
     41  1.1  christos 	  HPFTODIT=$(top_builddir)/src/utils/hpftodit/hpftodit
     42