IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38911


Ignore:
Timestamp:
Oct 20, 2015, 5:23:42 PM (11 years ago)
Author:
eugene
Message:

build font sizes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20150625/Ohana/src/libkapa/rotfont/Makefile

    r38885 r38911  
    1 default: fontsize
     1default: all
    22help:
    3         @echo "make options: fontsize (generate fontsize metrics)"
     3        @echo "make options: all (generate fontsize metrics)"
     4
     5TIMES = \
     6times8.h \
     7times12.h \
     8times14.h \
     9times18.h \
     10times24.h
     11
     12COURIER = \
     13courier8.h \
     14courier12.h \
     15courier14.h \
     16courier18.h \
     17courier24.h
     18
     19HELVETICA = \
     20helvetica8.h \
     21helvetica12.h \
     22helvetica14.h \
     23helvetica18.h \
     24helvetica24.h
     25
     26SYMBOL = \
     27symbol8.h \
     28symbol12.h \
     29symbol14.h \
     30symbol18.h \
     31symbol24.h
     32
     33FONTS = $(TIMES) $(COURIER) $(HELVETICA) $(SYMBOL)
     34
     35all: fixfont $(FONTS)
    436
    537fixfont: fixfont.c
    638
    7 fontsize: fixfont
    8         ./fontsize.sh
     39%.h : %.bdf
     40        @./fontdimen.sh $<
     41
     42clean:
     43        rm -f times*.h courier*.h helvetica*.h symbol*.h
     44        rm -f times*.psx courier*.psx helvetica*.psx symbol*.psx
     45        rm -f fixfont
Note: See TracChangeset for help on using the changeset viewer.