From 834e16cad54f1d6de15a1ad79024ceb6bc915bb2 Mon Sep 17 00:00:00 2001 From: Adrien Guatto Date: Mon, 5 Mar 2012 20:01:02 +0100 Subject: [PATCH] Fix: replace opt with native in build system --- compiler/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/Makefile b/compiler/Makefile index 7645d57..a78dab9 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -6,11 +6,11 @@ else BIN:=heptc.$(TARGET) endif -.PHONY: all clean opt byte clean debug install +.PHONY: all clean native byte clean debug install all: $(TARGET) -opt: +native: ifeq ($(ENABLE_SIMULATOR), yes) $(OCAMLBUILD) $(COMPILER).native $(SIMULATOR).native else