aboutsummaryrefslogtreecommitdiffstats
path: root/data/chrome/Makefile.am
blob: 45419f90234bffcb0322659debb180a3ebc60b4a (plain) (blame)
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
27
manifestdir = $(pkgdatadir)/chrome
manifest_in_files = app-chrome.manifest.in
manifest_DATA = $(manifest_in_files:.manifest.in=.manifest)

%.manifest: %.manifest.in
    @sed -e "s!@CHROMEDIR@!$(pkgdatadir)/chrome!g" $< > $@

brandingdir = $(manifestdir)/branding
branding_in_files = \
    brand.dtd.in        \
    brand.properties.in
branding_DATA = $(branding_in_files:%.in=%)

globalchromedir = $(manifestdir)/global
globalchrome_DATA = about.xhtml

EXTRA_DIST = \
    $(manifest_in_files)    \
    $(branding_in_files)    \
    $(globalchrome_DATA)

CLEANFILES = \
    $(manifest_DATA)

DISTCLEANFILES = \
    $(manifest_DATA)    \
    $(branding_DATA)