summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 529ad64..47e2e48 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,9 +4,8 @@ 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++
+ mv main.byte $(BIN)
clean:
rm -r _build
- rm main.byte
rm $(BIN)