This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
28
unikernel/duniverse/pp/Makefile
Normal file
28
unikernel/duniverse/pp/Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),)
|
||||
|
||||
default:
|
||||
dune build
|
||||
|
||||
test:
|
||||
dune runtest
|
||||
|
||||
install:
|
||||
dune install $(INSTALL_ARGS)
|
||||
|
||||
uninstall:
|
||||
dune uninstall $(INSTALL_ARGS)
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
clean:
|
||||
dune clean
|
||||
|
||||
release:
|
||||
dune-release tag
|
||||
dune-release distrib --skip-build --skip-lint --skip-tests -n pp
|
||||
# See https://github.com/ocamllabs/dune-release/issues/206
|
||||
DUNE_RELEASE_DELEGATE=github-dune-release-delegate dune-release publish distrib --verbose -n pp
|
||||
dune-release opam pkg -n pp
|
||||
dune-release opam submit -n pp
|
||||
|
||||
.PHONY: default install uninstall reinstall clean test
|
||||
Loading…
Add table
Add a link
Reference in a new issue