summaryrefslogtreecommitdiff
path: root/data/Makefile.am
blob: 9b5d05bcf984050b1c279a8c21e51e595013b029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
include $(top_srcdir)/common.am

dlnaschemas = dlna-profiles.rng
dlnaprofiles = mp3.xml \
	       ac3.xml \
	       lpcm.xml \
	       aac.xml \
	       wma.xml \
	       amr.xml \
	       common.xml \
	       mpeg1.xml \
	       avc.xml \
	       mpeg-ts.xml \
	       mpeg4.xml \
	       jpeg.xml \
	       png.xml

dlnadir = $(shareddir)/dlna-profiles
dlna_DATA = $(dlnaschemas) $(dlnaprofiles)

if HAVE_XMLLINT
check: $(dlnaprofiles) $(dlnaschemas)
	$(XMLLINT) --relaxng $(dlnaschemas) $(dlnaprofiles) >/dev/null
endif

EXTRA_DIST = $(dlnaschemas) $(dlnaprofiles)