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 /makefile | |
parent | 8cb4e3653bbaaf8a445c30d63fc6bad4c5164e87 (diff) | |
download | mu-6db2edf9c6c8221e4ab10047cd4fcab4111c9cde.tar.gz |
1439 - support clang in addition to gcc
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile index 8c37e50a..9b357d5e 100644 --- a/makefile +++ b/makefile @@ -1,5 +1,5 @@ mu: makefile enumerate/enumerate tangle/tangle mu.cc termbox/libtermbox.a - g++ -g -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu + c++ -g -Wall -Wextra -fno-strict-aliasing mu.cc termbox/libtermbox.a -o mu # To see what the program looks like after all layers have been applied, read # mu.cc |