radare2/mk/sloc.mk
pancake ba848ec5dd * Enhace the output of 'make sloc'
* Added test program for r_hash from python
2010-01-14 23:31:39 +01:00

12 lines
284 B
Makefile

sloc:
@if [ -n "$${SLOCDIR}" ]; then cd $$SLOCDIR ; fi ; \
total=0 ; \
for a in `find * -iname '*.c'`; do \
lines=$$(sloccount $$a |grep ansic= | cut -d ' ' -f 1) ; \
printf "$$lines\t$$a\n" ; \
total=$$(($$total+$$lines)) ; \
done ; \
printf "$$total\tTOTAL\n"
.PHONY: sloc