diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-09-11 20:24:14 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-09-11 20:26:46 -0700 |
commit | ccba671853b44147a95138581c580fce76653e57 (patch) | |
tree | 1d92fc4a2c1ea667fba2abad8be799f5916d7784 /makefile | |
parent | b3899909d60fb6dc48cef73d6d28dbd89fe72442 (diff) | |
download | mu-ccba671853b44147a95138581c580fce76653e57.tar.gz |
3335
Clean up rest of long-standing bit of ugliness. I'm growing more confident now that I can use layers to cleanly add any functionality I want. All I need is hook functions. No need to ever put '{' on their own line, or add arguments to calls.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/makefile b/makefile index 0c8cf3f8..7adfaf2d 100644 --- a/makefile +++ b/makefile @@ -57,9 +57,6 @@ function_list: mu.cc @# functions start out unindented, have all args on the same line, and end in ') {' @# ignore methods @grep -h "^[^[:space:]#].*) {$$" mu.cc |grep -v ":.*(" |perl -pwe 's/ \{.*/;/' > function_list - @# 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 # auto-generated list of tests to run test_list: mu.cc |