-
Notifications
You must be signed in to change notification settings - Fork 27
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
14 changed files
with
31 additions
and
57 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2005--2018 Jane Street Group, LLC <[email protected]> | ||
Copyright (c) 2005--2019 Jane Street Group, LLC <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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,18 +1,17 @@ | ||
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),) | ||
|
||
# Default rule | ||
default: | ||
jbuilder build @install | ||
dune build | ||
|
||
install: | ||
jbuilder install $(INSTALL_ARGS) | ||
dune install $(INSTALL_ARGS) | ||
|
||
uninstall: | ||
jbuilder uninstall $(INSTALL_ARGS) | ||
dune uninstall $(INSTALL_ARGS) | ||
|
||
reinstall: uninstall install | ||
|
||
clean: | ||
rm -rf _build | ||
dune clean | ||
|
||
.PHONY: default install uninstall reinstall clean |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
(lang dune 1.5) |
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,2 @@ | ||
(library (name sexplib_num) (public_name sexplib.num) (libraries num sexplib) | ||
(preprocess no_preprocessing)) |
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
opam-version: "1.2" | ||
opam-version: "2.0" | ||
maintainer: "[email protected]" | ||
authors: ["Jane Street Group, LLC <[email protected]>"] | ||
homepage: "https://github.com/janestreet/sexplib" | ||
bug-reports: "https://github.com/janestreet/sexplib/issues" | ||
dev-repo: "git+https://github.com/janestreet/sexplib.git" | ||
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/sexplib/index.html" | ||
license: "MIT" | ||
build: [ | ||
["jbuilder" "build" "-p" name "-j" jobs] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.04.2"} | ||
"parsexp" | ||
"sexplib0" | ||
"jbuilder" {build & >= "1.0+beta18.1"} | ||
"dune" {build & >= "1.5.1"} | ||
"num" | ||
] | ||
available: [ ocaml-version >= "4.04.2" ] | ||
descr: " | ||
Library for serializing OCaml values to and from S-expressions | ||
|
||
synopsis: "Library for serializing OCaml values to and from S-expressions" | ||
description: " | ||
Part of Jane Street's Core library | ||
The Core suite of libraries is an industrial strength alternative to | ||
OCaml's standard library that was developed by Jane Street, the | ||
|
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 @@ | ||
(library (name sexplib) (libraries bigarray parsexp sexplib0) | ||
(public_name sexplib) (preprocess no_preprocessing)) | ||
|
||
(ocamllex lexer) | ||
|
||
(ocamlyacc parser parser_with_layout) |
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
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 @@ | ||
(library (name sexplib_ounit_tests) | ||
(libraries expect_test_helpers_kernel sexplib str unix) | ||
(preprocess (pps ppx_jane))) |
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,2 @@ | ||
(library (name sexplib_unix) (public_name sexplib.unix) | ||
(libraries sexplib unix) (preprocess no_preprocessing)) |
This file was deleted.
Oops, something went wrong.