Reimplemented CreateBitmapOptionChoice
[grace.git] / fonts / Makefile
blob7cb7a4451cc6e6194fcd0e7476f5a33bfe0847d2
1 #####################################################
2 # Makefile for the fonts directory of Grace #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
7 TOP=..
9 include $(TOP)/Make.conf
11 FONTDATABASE = FontDataBase
13 FONTS = type1/n021003l.pfb \
14 type1/n021023l.pfb \
15 type1/n021004l.pfb \
16 type1/n021024l.pfb \
17 type1/n019003l.pfb \
18 type1/n019023l.pfb \
19 type1/n019004l.pfb \
20 type1/n019024l.pfb \
21 type1/n022003l.pfb \
22 type1/n022023l.pfb \
23 type1/n022004l.pfb \
24 type1/n022024l.pfb \
25 type1/d050000l.pfb \
26 type1/s050000l.pfb
28 AFMS = type1/d050000l.afm \
29 type1/n019003l.afm \
30 type1/n019004l.afm \
31 type1/n019023l.afm \
32 type1/n019024l.afm \
33 type1/n021003l.afm \
34 type1/n021004l.afm \
35 type1/n021023l.afm \
36 type1/n022003l.afm \
37 type1/n022023l.afm \
38 type1/n022004l.afm \
39 type1/n022024l.afm \
40 type1/n021024l.afm \
41 type1/s050000l.afm
43 ENCODINGS = enc/IsoLatin1.enc \
44 enc/IsoLatin2.enc \
45 enc/IsoLatin5.enc \
46 enc/IsoLatin7.enc \
47 enc/IsoLatin9.enc \
48 enc/PSLatin1.enc \
49 enc/PDFDoc.enc \
50 enc/WinAnsi.enc \
51 enc/MacRoman.enc \
52 enc/CP1251.enc \
53 enc/KOI8-R.enc \
54 enc/KOI8-U.enc
56 all : dummy
58 tests : dummy
60 check : dummy
62 clean : dummy
64 distclean : dummy
66 devclean : dummy
68 install : $(FONTS) $(AFMS) $(ENCODINGS)
69 $(MKINSTALLDIRS) $(DESTDIR)$(GRACE_HOME)/fonts
70 $(INSTALL_DATA) $(FONTDATABASE) $(DESTDIR)$(GRACE_HOME)/fonts
71 $(MKINSTALLDIRS) $(DESTDIR)$(GRACE_HOME)/fonts/type1
72 for i in $(FONTS); do $(INSTALL_DATA) $$i $(DESTDIR)$(GRACE_HOME)/fonts/type1; done
73 for i in $(AFMS); do $(INSTALL_DATA) $$i $(DESTDIR)$(GRACE_HOME)/fonts/type1; done
74 $(MKINSTALLDIRS) $(DESTDIR)$(GRACE_HOME)/fonts/enc
75 for i in $(ENCODINGS); do $(INSTALL_DATA) $$i $(DESTDIR)$(GRACE_HOME)/fonts/enc; done
77 links : dummy
79 dummy :