-
Notifications
You must be signed in to change notification settings - Fork 19
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
1,231 additions
and
861 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.*.swp | ||
.merlin | ||
*.install | ||
_build |
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,3 @@ | ||
### 6.39.0 (2017-08-02) | ||
|
||
* Switched to jbuilder and topkg |
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,6 +1,6 @@ | ||
Applications that are part of this distribution are subject to the terms of | ||
the GNU General Public License version 2 (see file GPL.txt). | ||
the GNU General Public License version 3 (see file GPL.md). | ||
|
||
Libraries that are part of this distribution are subject to the terms of the | ||
GNU Lesser General Public License version 2.1 with the OCaml linking exception | ||
(see file LGPL.txt). | ||
(see file LGPL.md). |
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,13 @@ | ||
opam-version: "1.2" | ||
maintainer: "Markus Mottl <markus.mottl@gmail.com>" | ||
authors: [ "Markus Mottl <markus.mottl@gmail.com>" ] | ||
license: "LGPL-2.1+ with OCaml linking exception" | ||
homepage: "https://mmottl.github.io/ocaml-makefile" | ||
dev-repo: "https://github.com/mmottl/ocaml-makefile.git" | ||
bug-reports: "https://github.com/mmottl/ocaml-makefile/issues" | ||
|
||
build: ["mkdir" "-p" "%{lib}%/ocaml-makefile"] | ||
|
||
install: ["cp" "OCamlMakefile" "%{lib}%/ocaml-makefile"] | ||
|
||
remove: ["rm" "%{lib}%/ocaml-makefile/OCamlMakefile"] |
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,13 @@ | ||
#!/usr/bin/env ocaml | ||
|
||
#use "topfind" | ||
#require "topkg" | ||
|
||
open Topkg | ||
|
||
let () = | ||
let opams = [ | ||
Pkg.opam_file ~lint_deps_excluding:None ~install:false "ocaml-makefile.opam" | ||
] in | ||
Pkg.describe ~opams ~metas:[] "ocaml-makefile" @@ fun _c -> | ||
Ok [ Pkg.nothing ] |
File renamed without changes.