blob: 715355b57dce3803ef8ac27a9fe4b930065d8dcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
opdir = $(datadir)/vyatta-op/templates
xsldir = @XSLDIR@
xsl_DATA =
bin_SCRIPTS = scripts/firewall/vyatta-show-firewall.pl
xsl_DATA += src/xsl/show_firewall_detail.xsl
xsl_DATA += src/xsl/show_firewall_statistics_brief.xsl
xsl_DATA += src/xsl/show_firewall_statistics.xsl
xsl_DATA += src/xsl/show_firewall.xsl
cpiop = find . ! -regex '\(.*~\|.*\.bak\|.*\.swp\|.*\#.*\#\)' -print0 | \
cpio -0pd
install-exec-hook:
mkdir -p $(DESTDIR)$(opdir)
cd templates; $(cpiop) $(DESTDIR)$(opdir)
|