diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-23 14:46:30 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-23 14:46:43 -0700 |
commit | 6db2edf9c6c8221e4ab10047cd4fcab4111c9cde (patch) | |
tree | 8cf05d45ef1be456937117fa1f2463f85de8551a /tangle/makefile | |
parent | 8cb4e3653bbaaf8a445c30d63fc6bad4c5164e87 (diff) | |
download | mu-6db2edf9c6c8221e4ab10047cd4fcab4111c9cde.tar.gz |
1439 - support clang in addition to gcc
Diffstat (limited to 'tangle/makefile')
-rw-r--r-- | tangle/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tangle/makefile b/tangle/makefile index cf4c3a88..caf13965 100644 --- a/tangle/makefile +++ b/tangle/makefile @@ -1,5 +1,5 @@ tangle: makefile type_list function_list file_list test_file_list test_list - g++ -g -O3 -Wall -Wextra -fno-strict-aliasing boot.cc -o tangle + c++ -g -O3 -Wall -Wextra -fno-strict-aliasing boot.cc -o tangle type_list: boot.cc [0-9]*.cc @# assumes struct decl has space before '{' |