Skip to content

Commit

Permalink
Fixed linecount in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Sep 23, 2011
1 parent 9780d20 commit 0b4a6dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Expand Up @@ -100,9 +100,9 @@ linecount:
@echo -n "C/C++ header files (.h):"
@cat `find ./ -type f -name '*.h'` | grep -vc '^ *$$'
@echo -n "SWIG header files (.i):"
@cat `find ./modular -type f -name '*.i'` | grep -vc '^ *$$'
@cat `find ./interfaces -type f -name '*.i'` | grep -vc '^ *$$'
@echo -n "Total:"
@(cat `find ./ -type f -name '*.cpp' -o -name '*.c' -o -name '*.h'`; cat `find ./modular -type f -o -name '*.i'`) | grep -vc '^ *$$'
@(cat `find ./ -type f -name '*.cpp' -o -name '*.c' -o -name '*.h'`; cat `find ./interfaces -type f -o -name '*.i'`) | grep -vc '^ *$$'

ChangeLog:
git log --name-status --graph >$@

0 comments on commit 0b4a6dd

Please sign in to comment.