Mon, 27 Jul 2020 17:44:47 +0200
fixes missing files in dist package
cline _________________________________________ Copyright (C) 2018 Mike Becker Contents: 1) About ................................................................... 12 2) Build instructions ...................................................... 24 3) Usage example ........................................................... 39 4) License ................................................................. 48 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 _________________________________________________________ If you checked out the sources from version control, you firstly need to run ./prebuild.sh This requires autotools installed on your system and creates a build dir. In release version you can skip the first task and just run ./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 2018 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.