diff options
author | Simon Josefsson <simon@josefsson.org> | 2009-11-09 17:26:51 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2009-11-09 17:26:51 +0100 |
commit | 1508911db0bf21fc1a881ec99d775e1b6838daa9 (patch) | |
tree | a10e4a0930b63d5889678b588f8c7a945bfb1184 /build-aux/pmccabe2html | |
parent | 1e93f63c9d684b44844e8fef57b0a655d39626fe (diff) | |
download | gnutls-1508911db0bf21fc1a881ec99d775e1b6838daa9.tar.gz |
Update gnulib files.
Diffstat (limited to 'build-aux/pmccabe2html')
-rw-r--r--[-rwxr-xr-x] | build-aux/pmccabe2html | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/build-aux/pmccabe2html b/build-aux/pmccabe2html index bc0f6e80b9..dd397cff19 100755..100644 --- a/build-aux/pmccabe2html +++ b/build-aux/pmccabe2html @@ -1,6 +1,4 @@ -#!/bin/sh -exec awk -f "$0" "$@" -# pmccabe2html - pmccabe to html converter +# pmccabe2html - AWK script to convert pmccabe output to html # Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc. @@ -23,16 +21,16 @@ exec awk -f "$0" "$@" # Typical Invocation is from a Makefile.am: # -# cyclo-libidn.html: +# cyclo-$(PACKAGE).html: # $(PMCCABE) ${top_srcdir}/lib/*.[ch] \ # | sort -nr \ # | $(AWK) -f ${top_srcdir}/build-aux/pmccabe2html \ # -v lang=html -v name="$(PACKAGE_NAME)" \ -# -v vcurl="http://git.savannah.gnu.org/gitweb/?p=libidn.git;a=blob;f=%FILENAME%;hb=HEAD" \ -# -v url="http://www.gnu.org/software/libidn/" \ -# -v css=../../build-aux/pmccabe.css \ -# > tmp -# mv tmp $@ +# -v vcurl="http://git.savannah.gnu.org/gitweb/?p=$(PACKAGE).git;a=blob;f=%FILENAME%;hb=HEAD" \ +# -v url="http://www.gnu.org/software/$(PACKAGE)/" \ +# -v css=${top_srcdir}/build-aux/pmccabe.css \ +# > $@-tmp +# mv $@-tmp $@ # # The variables available are: # lang output language, either 'html' or 'wiki' |