blob: fc80b0acf18d30c5ff5c5af3077bdfed2d3df72f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
templatedir = $(datadir)/kolab/templates
template_DATA = \
$(wildcard templates/*.tpl) \
$(wildcard templates/header_checks.*)
rctemplatedir = $(datadir)/kolab/templates/roundcubemail
rctemplate_DATA = \
$(wildcard templates/roundcubemail/*.tpl)
EXTRA_DIST = \
$(template_DATA) \
$(rctemplate_DATA)
install-exec-local:
mkdir -p \
$(DESTDIR)/$(sysconfdir)/kolab/templates \
$(DESTDIR)/$(sysconfdir)/kolab/templates/roundcubemail
|