diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/hellos/Makefile.am | 22 | ||||
-rw-r--r-- | contrib/services/Makefile.am | 1 | ||||
-rw-r--r-- | contrib/services/openrc/Makefile.am | 6 | ||||
-rw-r--r-- | contrib/services/systemd/Makefile.am | 6 |
4 files changed, 35 insertions, 0 deletions
diff --git a/contrib/hellos/Makefile.am b/contrib/hellos/Makefile.am new file mode 100644 index 000000000..18a6458fe --- /dev/null +++ b/contrib/hellos/Makefile.am @@ -0,0 +1,22 @@ +# This Makefile.am is in the public domain + +pkghellodir= $(pkgdatadir)/hellos + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(pkghellodir) + @$(NORMAL_INSTALL) + for hello in $(srcdir)/hellos/*; do \ + if test -f $$hello; then \ + $(INSTALL_DATA) $$hello $(DESTDIR)$(pkghellodir)/ ; \ + fi \ + done + +dist-hook: + if test -d $(srcdir)/hellos; then \ + mkdir -p $(distdir)/hellos; \ + for hello in $(srcdir)/hellos/*; do \ + if test -f $$hello; then \ + cp -p $$hello $(distdir)/hellos; \ + fi \ + done \ + fi diff --git a/contrib/services/Makefile.am b/contrib/services/Makefile.am new file mode 100644 index 000000000..eb4bd7deb --- /dev/null +++ b/contrib/services/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = openrc systemd diff --git a/contrib/services/openrc/Makefile.am b/contrib/services/openrc/Makefile.am new file mode 100644 index 000000000..a02854384 --- /dev/null +++ b/contrib/services/openrc/Makefile.am @@ -0,0 +1,6 @@ +pkginitddir= $(pkgdatadir)/services/openrc + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(pkginitdir) + @$(NORMAL_INSTALL) + $(INSTALL_DATA) gnunet.initd $(DESTDIR)$(pkginitdir) diff --git a/contrib/services/systemd/Makefile.am b/contrib/services/systemd/Makefile.am new file mode 100644 index 000000000..7120f6f52 --- /dev/null +++ b/contrib/services/systemd/Makefile.am @@ -0,0 +1,6 @@ +pkginitddir= $(pkgdatadir)/services/systemd + +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(pkginitdir) + @$(NORMAL_INSTALL) + $(INSTALL_DATA) gnunet.service $(DESTDIR)$(pkginitdir) |