diff options
Diffstat (limited to 'share/Makefile.am')
-rw-r--r-- | share/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/share/Makefile.am b/share/Makefile.am new file mode 100644 index 0000000..047b5c2 --- /dev/null +++ b/share/Makefile.am @@ -0,0 +1,18 @@ +templatedir = $(datadir)/kolab/templates + +template_DATA = \ + $(wildcard templates/*.tpl) + +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 + |