summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-05 22:12:48 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-01-05 22:12:48 +0100
commit0e7268310b1fcac999a1b3f4e8f6f9b68e7783fc (patch)
tree0435f53348127a2d166ad187ead139ac10cc338e /src/Makefile
parent93975bf86887d997f49705b8535c896bc9130467 (diff)
downloadLPC-Projet-0e7268310b1fcac999a1b3f4e8f6f9b68e7783fc.tar.gz
LPC-Projet-0e7268310b1fcac999a1b3f4e8f6f9b68e7783fc.zip
Handle EQIdent (expressions such as A::x and A::f(x, y)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index c7ff839..51b57aa 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
- ocamlbuild main.byte
- mv main.byte $(BIN)
+ ocamlbuild main.native
+ mv main.native $(BIN)
clean:
rm -r _build