.PHONY: clean

NATIVE_ENABLED = false
BYTE_ENABLED = true

FILES[] =
   instruction

PROGRAM = instruction
OCAML_OTHER_LIBS += str

.DEFAULT: $(PROGRAM)$(EXE)
OCamlProgram($(PROGRAM), $(FILES))

clean:
	rm -f  $(PROGRAM)$(EXE) *.cm[iox] *.o *.omc *.opt *.run *~
