From 01c71fc2dd3c3545a5a3f0d83391a28590dc9f69 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Thu, 18 Aug 2016 16:11:37 +0200 Subject: add doc/examples, Makefile.am adds all *.cfg files generically doc/examples/Makefile.am taken from openbsc/openbsc/doc/examples. Change-Id: I1fadad4deb7f73d2b3aa753a84a76ba5b9bf9574 --- doc/Makefile.am | 2 ++ doc/examples/Makefile.am | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 doc/examples/Makefile.am (limited to 'doc') diff --git a/doc/Makefile.am b/doc/Makefile.am index 6974e89..81a25e2 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,3 +1,5 @@ +SUBDIRS = examples + EXTRA_DIST = \ hnb_cs_lu.msc \ hnb_cs_mo_call.msc \ diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am new file mode 100644 index 0000000..8f14fdc --- /dev/null +++ b/doc/examples/Makefile.am @@ -0,0 +1,23 @@ + +CFG_FILES = find $(srcdir) -name '*.cfg*' | sed -e 's,^$(srcdir),,' + +dist-hook: + for f in $$($(CFG_FILES)); do \ + j="$(distdir)/$$f" && \ + mkdir -p "$$(dirname $$j)" && \ + $(INSTALL_DATA) $(srcdir)/$$f $$j; \ + done + +install-data-hook: + for f in $$($(CFG_FILES)); do \ + j="$(DESTDIR)$(docdir)/examples/$$f" && \ + mkdir -p "$$(dirname $$j)" && \ + $(INSTALL_DATA) $(srcdir)/$$f $$j; \ + done + +uninstall-hook: + @$(PRE_UNINSTALL) + for f in $$($(CFG_FILES)); do \ + j="$(DESTDIR)$(docdir)/examples/$$f" && \ + $(RM) $$j; \ + done -- cgit v1.2.3