-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
all: build | ||
|
||
build: | ||
obuild build | ||
|
||
install: | ||
obuild install | ||
|
||
uninstall: | ||
ocamlfind remove mtl | ||
|
||
configure: | ||
obuild configure | ||
|
||
test: | ||
@echo TODO |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# ocaml-mtl - A Monad Transformers Library for OCaml | ||
|
||
This is a packaged up and slightly cleaned up version of the original "monads" | ||
library that can be found [here](http://lambda.jimpryor.net/monad_library/). |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,3 @@ obuild-ver: 1 | |
library mtl | ||
modules: Mtl | ||
src-dir: lib | ||
c-dir: ./ |