diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-12-28 19:49:23 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-12-28 19:49:23 +0100 |
commit | 19de9e7465735173469f75a09e279ae885ff2a04 (patch) | |
tree | c6517dcdb64d421ebe8703657e14eb76787ff904 /src/Makefile | |
parent | 3327156290ef00f135f7e99a30e1e063c80d7d6d (diff) | |
download | LPC-Projet-19de9e7465735173469f75a09e279ae885ff2a04.tar.gz LPC-Projet-19de9e7465735173469f75a09e279ae885ff2a04.zip |
Optimizations and refactoring.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile index 529ad64..40eee1b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,8 +3,8 @@ BIN=minic++ all: $(BIN) $(BIN): main.ml ast.ml parser.mly lexer.mll pretty.ml typing.ml pretty_typing.ml codegen.ml - ocamlbuild main.byte - mv main.byte minic++ + ocamlbuild main.native + mv main.native minic++ clean: rm -r _build |