diff options
author | Bob Gilligan <gilligan@sydney.vyatta.com> | 2007-12-14 18:26:36 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@sydney.vyatta.com> | 2007-12-14 18:26:36 -0800 |
commit | 543de3ad1e144d0ab8f31a47bee8b21bb1fae264 (patch) | |
tree | 6d3b8ec7df301c01c1a0e9b203a0ce50ea03064d /Makefile.am | |
download | vyatta-op-firewall-543de3ad1e144d0ab8f31a47bee8b21bb1fae264.tar.gz vyatta-op-firewall-543de3ad1e144d0ab8f31a47bee8b21bb1fae264.zip |
Initial commit of operational mode templates and scripts for the
firewall subsystem.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..d44534a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +opdir = $(datadir)/vyatta-op/templates + +xsldir = @XSLDIR@ + +sbin_SCRIPTS = +xsl_DATA = + +sbin_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) + + |