-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Add minimal oasis auto-generated files
Produced by running `oasis setup -setup-update dynamic` Signed-off-by: Euan Harris <[email protected]>
- Loading branch information
Showing
4 changed files
with
105 additions
and
3 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 |
---|---|---|
|
@@ -3,11 +3,8 @@ _tags | |
*.mldylib | ||
*.mllib | ||
myocamlbuild.ml | ||
setup.ml | ||
setup.data | ||
setup.log | ||
_build/ | ||
*.native | ||
*.clib | ||
Makefile | ||
configure |
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,41 @@ | ||
# OASIS_START | ||
# DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954) | ||
|
||
SETUP = ocaml setup.ml | ||
|
||
build: setup.data | ||
$(SETUP) -build $(BUILDFLAGS) | ||
|
||
doc: setup.data build | ||
$(SETUP) -doc $(DOCFLAGS) | ||
|
||
test: setup.data build | ||
$(SETUP) -test $(TESTFLAGS) | ||
|
||
all: | ||
$(SETUP) -all $(ALLFLAGS) | ||
|
||
install: setup.data | ||
$(SETUP) -install $(INSTALLFLAGS) | ||
|
||
uninstall: setup.data | ||
$(SETUP) -uninstall $(UNINSTALLFLAGS) | ||
|
||
reinstall: setup.data | ||
$(SETUP) -reinstall $(REINSTALLFLAGS) | ||
|
||
clean: | ||
$(SETUP) -clean $(CLEANFLAGS) | ||
|
||
distclean: | ||
$(SETUP) -distclean $(DISTCLEANFLAGS) | ||
|
||
setup.data: | ||
$(SETUP) -configure $(CONFIGUREFLAGS) | ||
|
||
configure: | ||
$(SETUP) -configure $(CONFIGUREFLAGS) | ||
|
||
.PHONY: build doc test all install uninstall reinstall clean distclean configure | ||
|
||
# OASIS_STOP |
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,27 @@ | ||
#!/bin/sh | ||
|
||
# OASIS_START | ||
# DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499) | ||
set -e | ||
|
||
FST=true | ||
for i in "$@"; do | ||
if $FST; then | ||
set -- | ||
FST=false | ||
fi | ||
|
||
case $i in | ||
--*=*) | ||
ARG=${i%%=*} | ||
VAL=${i##*=} | ||
set -- "$@" "$ARG" "$VAL" | ||
;; | ||
*) | ||
set -- "$@" "$i" | ||
;; | ||
esac | ||
done | ||
|
||
ocaml setup.ml -configure "$@" | ||
# OASIS_STOP |
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,37 @@ | ||
(* setup.ml generated for the first time by OASIS v0.4.5 *) | ||
|
||
(* OASIS_START *) | ||
(* DO NOT EDIT (digest: 9852805d5c19ca1cb6abefde2dcea323) *) | ||
(******************************************************************************) | ||
(* OASIS: architecture for building OCaml libraries and applications *) | ||
(* *) | ||
(* Copyright (C) 2011-2013, Sylvain Le Gall *) | ||
(* Copyright (C) 2008-2011, OCamlCore SARL *) | ||
(* *) | ||
(* This library is free software; you can redistribute it and/or modify it *) | ||
(* under the terms of the GNU Lesser General Public License as published by *) | ||
(* the Free Software Foundation; either version 2.1 of the License, or (at *) | ||
(* your option) any later version, with the OCaml static compilation *) | ||
(* exception. *) | ||
(* *) | ||
(* This library is distributed in the hope that it will be useful, but *) | ||
(* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *) | ||
(* or FITNESS FOR A PARTICULAR PURPOSE. See the file COPYING for more *) | ||
(* details. *) | ||
(* *) | ||
(* You should have received a copy of the GNU Lesser General Public License *) | ||
(* along with this library; if not, write to the Free Software Foundation, *) | ||
(* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *) | ||
(******************************************************************************) | ||
|
||
let () = | ||
try | ||
Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH") | ||
with Not_found -> () | ||
;; | ||
#use "topfind";; | ||
#require "oasis.dynrun";; | ||
open OASISDynRun;; | ||
|
||
(* OASIS_STOP *) | ||
let () = setup ();; |