]> git.wh0rd.org - fontconfig.git/blob - fc-lang/Imakefile
Remove at and grave from latin languages, add copyright, license and RCS
[fontconfig.git] / fc-lang / Imakefile
1 XCOMM $XFree86$
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.c
17 TMPL=fclang.tmpl.c
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 br.orth ca.orth co.orth\
22 cs.orth da.orth de.orth el.orth en.orth eo.orth es.orth et.orth eu.orth\
23 fi.orth fo.orth fr.orth fy.orth ga.orth gd.orth gl.orth he.orth hr.orth\
24 hu.orth hy.orth is.orth it.orth ja.orth ka.orth kk.orth kl.orth ko.orth\
25 la.orth lt.orth lv.orth mk.orth mo.orth mt.orth nl.orth no.orth oc.orth\
26 pl.orth pt.orth rm.orth ro.orth ru.orth sh.orth sk.orth sl.orth sq.orth\
27 sr.orth sv.orth th.orth tr.orth uk.orth vo.orth yi.orth zh_cn.orth\
28 zh_tw.orth
29
30 #
31 # ISO 639-2 adds many more three letter language names
32 #
33 ORTH2=chr.orth
34
35 ORTH=$(ORTH1) $(ORTH2)
36
37 all:: $(TARG)
38
39 clean::
40 $(RM) $(TARG)
41
42 $(TARG): fc-lang $(ORTH) $(TMPL)
43 ./fc-lang $(ORTH) < $(TMPL) > $(TARG)
44
45 ComplexProgramTarget(fc-lang)
46 LinkBuildBinary(ProgramTargetName(fc-lang))