]> git.wh0rd.org - fontconfig.git/blob - fc-lang/Imakefile
Trim ideographic punctuation and Suzhou numerals from zh-tw orthography.
[fontconfig.git] / fc-lang / Imakefile
1 XCOMM $XFree86: xc/lib/fontconfig/fc-lang/Imakefile,v 1.5 2002/07/08 07:31:49 keithp Exp $
2
3 #ifdef UseInstalled
4 /* building outside the tree, use private defines */
5 #include "../local.def"
6 #endif
7
8 INCLUDES=$(FREETYPE2INCLUDES) $(LIBXML2INCLUDES) -I.. -I../src
9
10 LOCAL_LIBRARIES=FontconfigClientLibs
11 DEPLIBS=FontconfigClientDepLibs
12
13 SRCS=fc-lang.c
14 OBJS=fc-lang.o
15
16 TARG=fclang.h
17 TMPL=fclang.tmpl.h
18
19 #
20 # Basic ISO 639-1 two letter language names
21 ORTH1=ab.orth ar.orth az.orth ba.orth be.orth bg.orth bn.orth bo.orth br.orth\
22 ca.orth co.orth cs.orth da.orth de.orth el.orth en.orth eo.orth es.orth\
23 et.orth eu.orth fa.orth fi.orth fo.orth fr.orth fy.orth ga.orth gd.orth\
24 gl.orth gu.orth he.orth hr.orth hu.orth hy.orth is.orth it.orth ja.orth\
25 ka.orth kk.orth kl.orth km.orth kn.orth ko.orth la.orth lo.orth lt.orth\
26 lv.orth mk.orth ml.orth mn.orth mo.orth mt.orth nl.orth no.orth oc.orth\
27 or.orth pl.orth pt.orth rm.orth ro.orth ru.orth sh.orth si.orth sk.orth\
28 sl.orth sq.orth sr.orth sv.orth ta.orth te.orth th.orth tl.orth tr.orth\
29 uk.orth vo.orth wa.orth yi.orth zh_cn.orth zh_hk.orth zh_mo.orth\
30 zh_sg.orth zh_tw.orth
31 #
32 # ISO 639-2 adds many more three letter language names
33 #
34 ORTH2=chr.orth
35
36 ORTH=$(ORTH1) $(ORTH2)
37
38 all:: $(TARG)
39
40 clean::
41 $(RM) $(TARG)
42
43 $(TARG): fc-lang $(ORTH) $(TMPL)
44 ./fc-lang $(ORTH) < $(TMPL) > $(TARG)
45
46 ComplexProgramTarget(fc-lang)
47 LinkBuildBinary(ProgramTargetName(fc-lang))