diff options
author | rpaulo <rpaulo@pkgsrc.org> | 2006-02-25 21:35:55 +0000 |
---|---|---|
committer | rpaulo <rpaulo@pkgsrc.org> | 2006-02-25 21:35:55 +0000 |
commit | cf43a37ac564a6158cb8041342675bbd641f3789 (patch) | |
tree | 449a0b47057779935b099426a1be58bdec878ec1 /devel/cflow/Makefile | |
parent | 2c149532d115abaaa48b94ae39234809d4207dde (diff) | |
download | pkgsrc-cf43a37ac564a6158cb8041342675bbd641f3789.tar.gz |
GNU cflow analyzes a collection of C source files and prints a graph,
charting control flow within the program.
GNU cflow is able to produce both direct and inverted flowgraphs for C
sources. Optionally a cross-reference listing can be generated. Two
output formats are implemented: POSIX and GNU (extended).
Input files can optionally be preprocessed before analyzing.
Diffstat (limited to 'devel/cflow/Makefile')
-rw-r--r-- | devel/cflow/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/cflow/Makefile b/devel/cflow/Makefile new file mode 100644 index 00000000000..6e615d0ffc1 --- /dev/null +++ b/devel/cflow/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/02/25 21:35:55 rpaulo Exp $ + +DISTNAME= cflow-1.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_GNU:=cflow/} + +MAINTAINER= rpaulo@NetBSD.org +HOMEPAGE= http://www.gnu.org/software/cflow/ +COMMENT= Code-path flow analyzer for C + +GNU_CONFIGURE= YES +USE_TOOLS+= yacc lex + +SUBST_CLASSES+= emacs +SUBST_MESSAGE.emacs= Removing cflow Emacs mode +SUBST_STAGE.emacs= pre-configure +SUBST_FILES.emacs= Makefile.in +SUBST_SED.emacs= -e 's| elisp||g' + +.include "../../mk/bsd.pkg.mk" |