This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
22
unikernel/duniverse/ppx_derivers/Makefile
Normal file
22
unikernel/duniverse/ppx_derivers/Makefile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),)
|
||||
|
||||
.PHONY: all
|
||||
all:
|
||||
dune build
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
dune install $(INSTALL_ARGS)
|
||||
|
||||
.PHONY: uninstall
|
||||
uninstall:
|
||||
dune uninstall $(INSTALL_ARGS)
|
||||
|
||||
.PHONY: reinstall
|
||||
reinstall:
|
||||
$(MAKE) uninstall
|
||||
$(MAKE) install
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
dune clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue