-
Notifications
You must be signed in to change notification settings - Fork 5
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
10 changed files
with
28 additions
and
39 deletions.
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ tmp | |
*.native | ||
*.byte | ||
*.install | ||
.merlin |
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 |
---|---|---|
@@ -1,17 +1,15 @@ | ||
# This makefile is used for dev convenience. It is removed | ||
# by the distribution process. | ||
|
||
.PHONY: lib test doc clean | ||
.PHONY: build doc clean | ||
|
||
lib: | ||
topkg build | ||
|
||
test: | ||
topkg build | ||
topkg test | ||
build: | ||
jbuilder build -j16 | ||
|
||
doc: | ||
topkg doc | ||
@echo "waiting for jbuilder odoc support" | ||
@#topkg doc | ||
|
||
clean: | ||
topkg clean | ||
-rm -R _build | ||
-rm octavius.install |
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
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 |
---|---|---|
@@ -1,10 +1,3 @@ | ||
#!/usr/bin/env ocaml | ||
#use "topfind" | ||
#require "topkg" | ||
open Topkg | ||
|
||
let () = | ||
Pkg.describe "octavius" @@ fun c -> | ||
Ok [ Pkg.lib ~exts:(Exts.ext ".cmi") "src/octTypes"; | ||
Pkg.mllib "src/octavius.mllib"; | ||
Pkg.test ~run:false "test/main"] | ||
#require "topkg-jbuilder.auto" |
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,8 @@ | ||
(jbuild_version 1) | ||
|
||
(ocamllex (octLexer)) | ||
(ocamlyacc (octParser)) | ||
|
||
(library | ||
((name octavius) | ||
(public_name octavius))) |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
(jbuild_version 1) | ||
|
||
(executable | ||
((name main) | ||
(public_name octavius) | ||
(libraries (octavius)))) |