diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-09-11 19:55:32 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-09-11 19:55:32 -0700 |
commit | af5dae87a8a55d8606dadcedc4974b31fea97873 (patch) | |
tree | a867148a75017d8d98c2045e1c0b0d06eaddf408 /makefile | |
parent | 8e3951a11a52f52bb7f11021c38c3fa2217d8c1e (diff) | |
download | mu-af5dae87a8a55d8606dadcedc4974b31fea97873.tar.gz |
3333
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/makefile b/makefile index 5b7aa4e9..0c8cf3f8 100644 --- a/makefile +++ b/makefile @@ -60,13 +60,10 @@ function_list: mu.cc @# occasionally we need to modify a declaration in a later layer without messing with ugly unbalanced brackets @# assume such functions move the '{' to column 0 of the very next line @grep -v "^#line" mu.cc |grep -B1 "^{" |grep -v "^{" |perl -pwe 's/$$/;/' >> function_list - @# test functions - @grep -h "^\s*TEST(" mu.cc |perl -pwe 's/^\s*TEST\((.*)\)$$/void test_$$1();/' >> function_list # auto-generated list of tests to run test_list: mu.cc @grep -h "^\s*void test_" mu.cc |perl -pwe 's/^\s*void (.*)\(\) \{.*/$$1,/' > test_list - @grep -h "^\s*TEST(" mu.cc |perl -pwe 's/^\s*TEST\((.*)\)$$/test_$$1,/' >> test_list # auto-generated list of extern declarations to global variables # for separate compilation |