diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-03 20:45:03 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-03 20:45:14 -0700 |
commit | 6d943605ad7c5989716a3f9c05392f1394980a05 (patch) | |
tree | 20be4a7ca60de0e9fb6d30d492d56be25165ec4b /cpp/build_and_test_until | |
parent | 844697c2ab154509cb8fa876bf6094c948caf817 (diff) | |
download | mu-6d943605ad7c5989716a3f9c05392f1394980a05.tar.gz |
1014 - reorganize build system to prepare for .mu layers
Diffstat (limited to 'cpp/build_and_test_until')
-rwxr-xr-x | cpp/build_and_test_until | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/build_and_test_until b/cpp/build_and_test_until index d23de2e1..cd0db64b 100755 --- a/cpp/build_and_test_until +++ b/cpp/build_and_test_until @@ -5,7 +5,8 @@ set -e set -v make tangle/tangle -./tangle/tangle --until $* |grep -v "^\s*//:" > mu.cc +make enumerate/enumerate +./tangle/tangle $(./enumerate/enumerate --until $* |grep -v '.mu$') |grep -v "^\s*//:" > mu.cc make autogenerated_lists g++ -g -Wall -Wextra -fno-strict-aliasing mu.cc -o mu ./mu test |