diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-05 22:13:55 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2014-01-05 22:13:55 +0100 |
commit | fa1ac115930822efb86f2c02f87f48bc9bdc3ad0 (patch) | |
tree | 79027c1bb4a741816a3ea099b4f2cd26095109a6 /src/Makefile | |
parent | a77aecd2aab857dfa7ef50c9017482b3c80fd790 (diff) | |
parent | 0e7268310b1fcac999a1b3f4e8f6f9b68e7783fc (diff) | |
download | LPC-Projet-fa1ac115930822efb86f2c02f87f48bc9bdc3ad0.tar.gz LPC-Projet-fa1ac115930822efb86f2c02f87f48bc9bdc3ad0.zip |
Merge branch 'master' into codegen-alex
Conflicts:
src/Makefile
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 47e2e48..51b57aa 100644 --- a/src/Makefile +++ b/src/Makefile @@ -2,9 +2,9 @@ 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 $(BIN) +$(BIN): main.ml ast.ml parser.mly lexer.mll pretty.ml typing.ml pretty_typing.ml + ocamlbuild main.native + mv main.native $(BIN) clean: rm -r _build |