home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-11-29 | 1.4 KB | 53 lines |
- # User tunable macros
- CC= gcc
- OPTIMIZE=
- WARN= -w #-W -Wunused -Wimplicit -Wreturn-type -Wcomment # for gcc only
- CFLAGS= $(OPTIMIZE) $(WARN)
- # object files
-
- FVE = \
- glemark.fve plba.fve plcc.fve plcg.fve plci.fve \
- plcr.fve plcs.fve pldr.fve plge.fve \
- plgg.fve plgi.fve plsa.fve plsg.fve \
- plsr.fve plss.fve plsym1.fve plsym2.fve \
- plti.fve pltr.fve texcmb.fve texcmex.fve \
- texcmitt.fve texcmmi.fve texcmr.fve texcmss.fve \
- texcmssb.fve texcmssi.fve texcmsy.fve texcmti.fve \
- texcmtt.fve
- FMT = \
- glemark.fmt plba.fmt plcc.fmt plcg.fmt \
- plci.fmt plcr.fmt plcs.fmt pldr.fmt \
- plge.fmt plgg.fmt plgi.fmt plsa.fmt plsg.fmt \
- plsr.fmt plss.fmt plsym1.fmt plsym2.fmt plti.fmt \
- pltr.fmt psagb.fmt psagbo.fmt psagd.fmt psagdo.fmt \
- psbd.fmt psbdi.fmt psbli.fmt psc.fmt pscb.fmt \
- pscbo.fmt psco.fmt psh.fmt pshb.fmt pshbo.fmt \
- pshc.fmt pshcb.fmt pshcbo.fmt pshcdo.fmt pshn.fmt \
- pshnb.fmt pshnbo.fmt pshno.fmt psho.fmt psncsb.fmt \
- psncsbi.fmt psncsi.fmt psncsr.fmt pspb.fmt pspbi.fmt \
- pspi.fmt pspr.fmt pssym.fmt pstb.fmt pstbi.fmt \
- psti.fmt pstr.fmt pszcmi.fmt pszd.fmt texcmb.fmt \
- texcmex.fmt texcmitt.fmt texcmmi.fmt texcmr.fmt texcmsl.fmt \
- texcmss.fmt texcmssb.fmt texcmssi.fmt texcmsy.fmt texcmti.fmt \
- texcmtt.fmt
-
- allfonts: $(FVE) $(FMT)
- echo done
-
- .SUFFIXES: .fve .fmt .afm .gle
-
- .afm.fmt:
- ../makefmt $<
-
- .gle.fve:
- ../fbuild $<
-
- #%.fmt: %.afm
- # ../makefmt $(basename $<)
-
- #%.fve: %.gle
- # ../fbuild $(basename $<)
-
-
-
-