Skip to content

Instantly share code, notes, and snippets.

@objmagic
Created June 27, 2015 11:10
Show Gist options
  • Select an option

  • Save objmagic/29af904e7b407f90d6df to your computer and use it in GitHub Desktop.

Select an option

Save objmagic/29af904e7b407f90d6df to your computer and use it in GitHub Desktop.
merlin
B _build/**
S .
EXT meta
let x = 1
let y = A.x
#
# Build system for ocs library and interpreter
#
OCAMLBUILD = ocamlbuild
METAOCAMLC = metaocamlc
TARGET = a.byte b.byte
build:
$(OCAMLBUILD) -tag annot -tag bin_annot -ocamlc $(METAOCAMLC) $(TARGET)
clean:
ocamlbuild -clean
rm -rf *.cmi *.cmo *.out
.PHONY: byte clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment