Merge branch 'master' of ssh://git.gnunet.org/gnunet
[oweals/gnunet.git] / Makefile.am
index 7e1cea0ce31d349b8f08378534acc2c776a7a32f..579939b09e01e765f05107ab4ccb0e914408d2db 100644 (file)
@@ -1,11 +1,35 @@
+# This Makefile.am is in the public domain
 AM_CPPFLAGS = -I$(top_srcdir)/src/include
-SUBDIRS  = contrib doc m4 src po pkgconfig
+
+# only documentation (ALL of the documentation)
+if DOCUMENTATION_ONLY
+  SUBDIRS = doc
+else
+  SUBDIRS = m4 src po pkgconfig
+endif
+
+# documentation on / off switch (affects all of the documentation)
+if DOCUMENTATION
+  SUBDIRS += doc
+endif
+if HAVE_EXPERIMENTAL
+  SUBDIRS += lint
+endif
+
+# only manpages, needs "doc" subdir
+if INCLUDE_MANPAGES
+  SUBDIRS += doc
+endif
+
+if !TALER_ONLY
+  SUBDIRS += contrib
+endif
 
 EXTRA_DIST = \
  ABOUT-NLS \
  config.rpath \
install-sh \
- acinclude.m4
acinclude.m4 \
+ README.1st
 
 gnunetincludedir = $(includedir)/gnunet
 gnunetinclude_HEADERS = gnunet_config.h
@@ -15,15 +39,11 @@ doc_DATA = COPYING README
 
 ACLOCAL_AMFLAGS = -I m4
 
-ChangeLog:
-       if test -f $(top_srcdir)/.svn/entries; then \
-               svn log -v --xml -r HEAD:18409 | \
-                       xsltproc --stringparam ignore-message-starting "-" \
-                                --stringparam strip-prefix "gnunet" \
-                                --stringparam include-rev "yes" $(top_srcdir)/contrib/svn2cl.xsl - > $@; \
-       fi
-
-dist: ChangeLog
-
-.PHONY: ChangeLog
-
+# TODO: better nesting.
+if HAVE_UNCRUSTIFY_BINARY
+pretty:
+       find $(top_srcdir) -type f -name '*.c' -or -name '*.h' -print0 | xargs -0 uncrustify -c $(top_srcdir)/contrib/uncrustify.cfg --replace --no-backup 2>&1 || true
+if HAVE_YAPF_BINARY
+       find $(top_srcdir) -type f -name '*.py' -or -name '*.py.in' -print0 | xargs -0 $(YAPF_BINARY) -i 2>&1 || true
+endif
+endif