Created
June 27, 2015 11:10
-
-
Save objmagic/29af904e7b407f90d6df to your computer and use it in GitHub Desktop.
merlin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| B _build/** | |
| S . | |
| EXT meta |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let x = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let y = A.x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # 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