aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-02-02 14:01:39 +0100
committerSébastien Dailly <sebastien@chimrod.com>2021-02-02 21:26:33 +0100
commitb09a05d9e38e0734f66377716b00268b50da7de8 (patch)
tree75c5161f755e15349998af4adfe39bce46406c58 /Makefile
Initial commit
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100755
index 0000000..29bb294
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+all:
+ dune build @all
+
+clean:
+ dune clean
+
+docs:
+ dune build @doc
+
+install:
+ dune install --prefix "/usr" -p css_merge
+
+deps:
+ opam install . --deps-only
+
+.PHONY: all clean