Browse Source

Add Makefile target "count_loc" to display a count of lines of code.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@10979 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 10 years ago
parent
commit
e10b900018
  1. 3
      prism/Makefile

3
prism/Makefile

@ -516,6 +516,9 @@ tarcf:
echo Building tar file "../"$$TARCF_DIR".tar.gz" && \
(cd ..; tar cfz $$TARCF_DIR".tar.gz" $$TARCF_DIR)
count_loc:
find $(SRC_DIR) -name '*.java' -o -name '*.cc' | xargs wc -l
PRISM_CLASSPATH = "$(CLASSES_DIR)$(CLASSPATHSEP)$(LIB_DIR)/*"
javadoc:

Loading…
Cancel
Save