aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-09-12 18:15:03 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-09-12 18:28:24 +0200
commit966fcb2ca8d2021b8337b89ae92292bf93848598 (patch)
tree8a7459523917af8c4b87e4bbcb326b8eab45f656
parent6fe1c2220ad8a6d7d61af487b43adb11a21b79cb (diff)
Move doc/Makefile.am to doc/examples/Makefile.am
-rw-r--r--configure.ac1
-rw-r--r--doc/Makefile.am23
-rw-r--r--doc/examples/Makefile.am22
3 files changed, 24 insertions, 22 deletions
diff --git a/configure.ac b/configure.ac
index 368f1cc..99f7829 100644
--- a/configure.ac
+++ b/configure.ac
@@ -114,6 +114,7 @@ AC_MSG_RESULT([CPPFLAGS="$CPPFLAGS"])
AC_OUTPUT(
Makefile
doc/Makefile
+ doc/examples/Makefile
src/Makefile
src/gsupclient/Makefile
include/Makefile
diff --git a/doc/Makefile.am b/doc/Makefile.am
index e0e5380..aee2d7b 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,22 +1 @@
-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)/$$f" && \
- mkdir -p "$$(dirname $$j)" && \
- $(INSTALL_DATA) $(srcdir)/$$f $$j; \
- done
-
-uninstall-hook:
- @$(PRE_UNINSTALL)
- for f in $$($(CFG_FILES)); do \
- j="$(DESTDIR)$(docdir)/$$f" && \
- $(RM) $$j; \
- done
+SUBDIRS = examples
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am
new file mode 100644
index 0000000..530c3fa
--- /dev/null
+++ b/doc/examples/Makefile.am
@@ -0,0 +1,22 @@
+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