diff options
author | Kim Hagen <khagen@multi-development.com> | 2014-08-23 13:13:27 +0200 |
---|---|---|
committer | Kim Hagen <khagen@multi-development.com> | 2014-08-23 13:13:27 +0200 |
commit | c3fb13d9f2ab679b89faee991d3bb7c6ab31356f (patch) | |
tree | 31130d19241f7936b286f41689202e9444aae471 /Makefile.am | |
download | vyos-nhrp-c3fb13d9f2ab679b89faee991d3bb7c6ab31356f.tar.gz vyos-nhrp-c3fb13d9f2ab679b89faee991d3bb7c6ab31356f.zip |
initial commit
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..a99dc69 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,26 @@ +cfgdir = $(datadir)/vyatta-cfg/templates +opdir = $(datadir)/vyatta-op/templates +curverdir = $(sysconfdir)/config-migrate/current +bin_sudo_usersdir = $(bindir)/sudo-users +initddir = /etc/init.d + +initd_SCRIPTS = etc/init.d/opennhrp.init + +vprefix = /opt/vyatta +vsbindir = $(vprefix)/sbin + +sbin_SCRIPTS = scripts/vyos-update-nhrp.pl + +bin_sudo_users_SCRIPTS = + +curver_DATA = + +cpiop = find . ! -regex '\(.*~\|.*\.bak\|.*\.swp\|.*\#.*\#\)' -print0 | \ + cpio -0pd + +install-exec-hook: + mkdir -p $(DESTDIR)$(cfgdir) + cd templates-cfg; $(cpiop) $(DESTDIR)$(cfgdir) + mkdir -p $(DESTDIR)$(opdir) + cd templates-op; $(cpiop) $(DESTDIR)$(opdir) + mkdir -p $(DESTDIR)/etc/ |