summaryrefslogtreecommitdiff
path: root/data/layouts/touch/Makefile.am
blob: a3389d8a820c8ab73c63cc19ff76b5581f9f9ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
touchlayoutsdir = $(datadir)/caribou/layouts/touch
touchlayouts_in_files =\
    ara.xml.in \
    il.xml.in \
    us.xml.in
touchlayouts_DATA = $(touchlayouts_in_files:.xml.in=.xml)

common_files = \
	common/qwerty.xml \
	common/symbols.xml

%.xsl: %.xml.in
	xsltproc --xinclude $(top_srcdir)/tools/basic.xsl $< > $@

%.xml: %.xsl %.xml.in
	xsltproc --xinclude $^ > $@

EXTRA_DIST = $(touchlayouts_in_files) $(common_files)

CLEANFILES = $(touchlayouts_DATA) $(touchlayouts_in_files:.xml.in=.xsl)