about summary refs log tree commit diff stats
path: root/cpp/makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-17 12:14:37 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-17 12:14:37 -0700
commita576e13d2f0eaa11b99ef3dddd1dcdb7557d09af (patch)
tree5fab3c8d206b8591c9d051685575c2aa9a53c91b /cpp/makefile
parent5b0a415f113d00478f5a306988bbcdbd35d99094 (diff)
downloadmu-a576e13d2f0eaa11b99ef3dddd1dcdb7557d09af.tar.gz
1079
Diffstat (limited to 'cpp/makefile')
-rw-r--r--cpp/makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/makefile b/cpp/makefile
index c9fd139f..69b7318e 100644
--- a/cpp/makefile
+++ b/cpp/makefile
@@ -22,6 +22,7 @@ test: mu
 	./mu test
 
 function_list: mu.cc
+                                # skip methods
 	@grep -h "^[^ #].*) {" mu.cc |grep -v ":.*(" |perl -pwe 's/ {.*/;/' > function_list
 	@grep -h "^[[:space:]]*TEST(" mu.cc |perl -pwe 's/^\s*TEST\((.*)\)$$/void test_$$1();/' >> function_list