]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
doc: removed cyclo subdir
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 9 Mar 2019 20:14:39 +0000 (21:14 +0100)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 9 Mar 2019 20:15:57 +0000 (21:15 +0100)
This directory had a makefile which was intended to calculate the cyclomatic
complexity, however that was not functional, and not related with gnutls'
documentation.

Resolves: #727

Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
configure.ac
doc/Makefile.am
doc/cyclo/Makefile.am [deleted file]

index 8d9ab8c143563b9d49f89660edae1d662fef89a3..b5f06074454cef6196c5a3361165891958cee176 100644 (file)
@@ -942,7 +942,6 @@ AC_CONFIG_FILES([
   doc/credentials/Makefile
   doc/credentials/srp/Makefile
   doc/credentials/x509/Makefile
-  doc/cyclo/Makefile
   doc/doxygen/Doxyfile
   doc/examples/Makefile
   doc/latex/Makefile
index 59b3e67e5b78b91d84783e61470e3c781b5606d9..19982f5ad85db9ecfadb61f3f53a80de5f2af306 100644 (file)
@@ -32,7 +32,7 @@ IMAGES = \
        gnutls-logo.png gnutls-x509.png \
        pkcs11-vision.png
 
-SUBDIRS = examples cyclo scripts credentials latex
+SUBDIRS = examples scripts credentials latex
 if ENABLE_GTK_DOC
 SUBDIRS += reference
 endif
diff --git a/doc/cyclo/Makefile.am b/doc/cyclo/Makefile.am
deleted file mode 100644 (file)
index f6327c1..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-## Process this file with automake to produce Makefile.in
-# Copyright (C) 2008-2012 Free Software Foundation, Inc.
-#
-# Author: Simon Josefsson
-#
-# This file is part of GnuTLS.
-#
-# This file is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-#
-# This file is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this file; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-EXTRA_DIST = cyclo-gnutls.html
-
-vcurl = "http://git.savannah.gnu.org/gitweb/?p=gnutls.git;a=blob;f=lib/%FILENAME%;hb=HEAD"
-
-cyclo-gnutls.html:
-       (cd ${top_srcdir}/lib && \
-               $(PMCCABE) `find . -type f -name \*.[ch] \
-                               | grep -v /minitasn1/ | sed 's,^./,,'` \
-               | sort -nr \
-               | LANG=C $(AWK) -f ${abs_top_srcdir}/build-aux/pmccabe2html \
-                       -v lang=html -v name="$(PACKAGE_STRING)" \
-                       -v vcurl=$(vcurl) \
-                       -v url="http://www.gnu.org/software/gnutls/" \
-                       -v css=${abs_top_srcdir}/build-aux/pmccabe.css) \
-                       > tmp
-       mv tmp $@