diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-02-19 18:25:25 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-02-19 18:25:25 -0800 |
commit | 201b2e6c7ce94c986fe7888a60f0e1ba24a05ce9 (patch) | |
tree | 078579498b5dcbcbfbd07634a5164b68561f3016 /cpp/makefile | |
parent | 7ec3e3b41eb404dbca4943d87ff14838e1177469 (diff) | |
download | mu-201b2e6c7ce94c986fe7888a60f0e1ba24a05ce9.tar.gz |
796 - jump instructions done
Diffstat (limited to 'cpp/makefile')
-rw-r--r-- | cpp/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/makefile b/cpp/makefile index fe801a95..40eb3873 100644 --- a/cpp/makefile +++ b/cpp/makefile @@ -12,7 +12,7 @@ tangle/tangle: cd tangle && make # auto-generated files; by convention they end in '_list'. -.PHONY: autogenerated_lists +.PHONY: autogenerated_lists clena autogenerated_lists: mu.cc function_list test_list function_list: mu.cc @@ -23,6 +23,7 @@ test_list: mu.cc @grep -h "^[[:space:]]*void test_" mu.cc |perl -pwe 's/^\s*void (.*)\(\) {.*/$$1,/' > test_list @grep -h "^[[:space:]]*TEST(" mu.cc |perl -pwe 's/^\s*TEST\((.*)\)$$/test_$$1,/' >> test_list +clena: clean clean: cd tangle && make clean rm -rf mu.cc mu *_list |