aboutsummaryrefslogtreecommitdiff
path: root/scripts/Makefile.am
blob: 81e4136965383f082de3ef7e2b66b90757038424 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include

dist_pkgdata_DATA = \
  netjail/netjail_core.sh \
  netjail/netjail_exec.sh \
  netjail/netjail_start.sh \
  netjail/netjail_stop.sh \
  netjail/topo.sh \
  testing-ng/block.sh

EXTRA_DIST = \
  get_version.sh

install-data-hook:
	chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_core.sh'
	chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_start.sh'
	chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_stop.sh'
	chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_exec.sh'
	chmod o+x '$(DESTDIR)$(pkgdatadir)/topo.sh'
	chmod o+x '$(DESTDIR)$(pkgdatadir)/block.sh'

## EOF