From 09cb17e77bf978b2c449f572aa5a227ebf9ba8e9 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sat, 6 Apr 2019 15:35:56 +0000 Subject: Add missing Makefiles --- contrib/hellos/Makefile.am | 22 ++++++++++++++++++++++ contrib/services/Makefile.am | 1 + contrib/services/openrc/Makefile.am | 6 ++++++ contrib/services/systemd/Makefile.am | 6 ++++++ 4 files changed, 35 insertions(+) create mode 100644 contrib/hellos/Makefile.am create mode 100644 contrib/services/Makefile.am create mode 100644 contrib/services/openrc/Makefile.am create mode 100644 contrib/services/systemd/Makefile.am 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) -- cgit v1.2.3