Blame doc/cyclo/Makefile.am

Packit 549fdc
## Process this file with automake to produce Makefile.in
Packit 549fdc
# Copyright (C) 2008-2012 Free Software Foundation, Inc.
Packit 549fdc
#
Packit 549fdc
# Author: Simon Josefsson
Packit 549fdc
#
Packit 549fdc
# This file is part of GnuTLS.
Packit 549fdc
#
Packit 549fdc
# This file is free software; you can redistribute it and/or modify it
Packit 549fdc
# under the terms of the GNU General Public License as published by
Packit 549fdc
# the Free Software Foundation; either version 3 of the License, or
Packit 549fdc
# (at your option) any later version.
Packit 549fdc
#
Packit 549fdc
# This file is distributed in the hope that it will be useful, but
Packit 549fdc
# WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 549fdc
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 549fdc
# General Public License for more details.
Packit 549fdc
#
Packit 549fdc
# You should have received a copy of the GNU General Public License
Packit 549fdc
# along with this file; if not, write to the Free Software Foundation,
Packit 549fdc
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 549fdc
Packit 549fdc
EXTRA_DIST = cyclo-gnutls.html
Packit 549fdc
Packit 549fdc
vcurl = "http://git.savannah.gnu.org/gitweb/?p=gnutls.git;a=blob;f=lib/%FILENAME%;hb=HEAD"
Packit 549fdc
Packit 549fdc
cyclo-gnutls.html:
Packit 549fdc
	(cd ${top_srcdir}/lib && \
Packit 549fdc
		$(PMCCABE) `find . -type f -name \*.[ch] \
Packit 549fdc
				| grep -v /minitasn1/ | sed 's,^./,,'` \
Packit 549fdc
		| sort -nr \
Packit 549fdc
		| LANG=C $(AWK) -f ${abs_top_srcdir}/build-aux/pmccabe2html \
Packit 549fdc
			-v lang=html -v name="$(PACKAGE_STRING)" \
Packit 549fdc
			-v vcurl=$(vcurl) \
Packit 549fdc
			-v url="http://www.gnu.org/software/gnutls/" \
Packit 549fdc
			-v css=${abs_top_srcdir}/build-aux/pmccabe.css) \
Packit 549fdc
			> tmp
Packit 549fdc
	mv tmp $@