README

Wed, 31 May 2017 12:20:04 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 31 May 2017 12:20:04 +0200
changeset 48
0d2c13c24fd0
parent 46
e0928e4b9a59
child 53
32b9e0a5cebd
permissions
-rw-r--r--

adds remaining autoconf files

                                       cline
                        _________________________________________
                             Copyright (C) 2017 Mike Becker

Contents:
1) About ................................................................... 12
2) Build instructions ...................................................... 24
3) Usage example ........................................................... 35
4) License ................................................................. 44


1) About ______________________________________________________________________

cline is a command line tool that counts code lines in your project folder. It
is designed to recursively find any source file matching specific rules and
count the line breaks within that file. You may specify file suffixes to include
or exclude as well as regular expressions for code lines that shall be excluded
(e.g. to exclude comments). By default a heuristic algorithm skips binary files.
You may configure the restrictiveness of this algorithm with command line
options.

Type cline --help for further information.

2) Build instructions _________________________________________________________

In release version you can just
  ./configure && make

After building you get a system wide install with
  sudo make install

To enable a debug build, configure with
  ./configure --enable-debug

3) Example usage ______________________________________________________________

You can test cline right away with the cline project files. Just type:
  cline -rms .c,.h --exclude-cstyle-comments

This will find any .c or .h file recursively in the cline project folder and
won't display other files (-m option). It will also skip comments when counting
lines.

4) License ____________________________________________________________________

Copyright 2017 Mike Becker. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 

mercurial