Skip to content

Commit

Permalink
Add wrapper Makefile over dune commands
Browse files Browse the repository at this point in the history
  • Loading branch information
k4rtik committed Jan 15, 2020
1 parent feabf34 commit 1d77669
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.PHONY: build clean test

build:
dune build @install

test:
dune runtest

install:
dune install

uninstall:
dune uninstall

clean:
dune clean

0 comments on commit 1d77669

Please sign in to comment.