2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

Allow these to be installed. Note that this commit is incomplete since the

I didn't commit the change to parent Makefile.am


git-svn-id: svn://bind10.isc.org/svn/bind10/branches/parkinglot@596 e5f2f494-b856-4b98-b285-d166d9295462
This commit is contained in:
Jeremy C. Reed
2010-01-28 20:52:19 +00:00
parent 179b23543e
commit d33ca87f84
4 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
PY_MODULES= __init__.py data.py session.py Message.py
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(pyexecdir)/ISC/CC
@(for _foo_ in $(PY_MODULES) ; \
do $(INSTALL) -m 0644 $$_foo_ $(DESTDIR)$(pyexecdir)/ISC/CC/ ; done)

View File

@@ -0,0 +1,8 @@
SUBDIRS = CC Util
PY_MODULES= __init__.py
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(pyexecdir)/ISC
@(for _foo_ in $(PY_MODULES) ; \
do $(INSTALL) -m 0644 $$_foo_ $(DESTDIR)$(pyexecdir)/ISC/ ; done)

View File

@@ -0,0 +1,6 @@
PY_MODULES= __init__.py hexdump.py
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(pyexecdir)/ISC/Util
@(for _foo_ in $(PY_MODULES) ; \
do $(INSTALL) -m 0644 $$_foo_ $(DESTDIR)$(pyexecdir)/ISC/Util/ ; done)

View File

@@ -0,0 +1 @@
SUBDIRS = ISC