diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-04-05 15:52:46 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2015-09-15 23:01:26 -0400 |
commit | f23cd2882dfcc9329f5dd4af57004f15f674876b (patch) | |
tree | b94fcf7790caa523db22a9a40d0f15504ab4190a /Makefile | |
parent | 209a80bb669ae1c8d25a195b4d22cc1a1cfa1ddf (diff) | |
download | roux-f23cd2882dfcc9329f5dd4af57004f15f674876b.tar.gz |
compile tmain with optimizations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 882df13..22c73f5 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ bak: elf.ml lo2.ml test: bak @./bak test - @cc -o t tmain.c t.o && ./t + @cc -O2 -o t tmain.c t.o && ./t clean: rm -f bak t t.o |