summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2019-03-09 21:14:39 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2019-03-09 21:15:57 +0100
commitc7af9787eaf1f8c604ca5fbac8a73eeeb22d1ad3 (patch)
tree4e2aae58f6b7105f777360698ed50d3342f8e5d8 /doc
parent0c1f69f943480dea2724a74285a0b409ec85546b (diff)
downloadgnutls-c7af9787eaf1f8c604ca5fbac8a73eeeb22d1ad3.tar.gz
doc: removed cyclo subdirtmp-remove-doc-cyclo
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>
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/cyclo/Makefile.am37
2 files changed, 1 insertions, 38 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 59b3e67e5b..19982f5ad8 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -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
index f6327c1bb1..0000000000
--- a/doc/cyclo/Makefile.am
+++ /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 $@