forked from ARM-software/asl-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (28 loc) · 773 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
################################################################
# ASL Makefile
#
# Copyright Arm Limited (c) 2017-2019
# SPDX-Licence-Identifier: BSD-3-Clause
################################################################
.DEFAULT: all
VERSION = 0.2.0
build::
dune build
install::
dune build @install
dune install
uninstall::
dune build @install
dune uninstall
publish::
dune build @install
opam publish https://github.com/alastairreid/asl-interpreter/archive/$(VERSION).tar.gz
doc::
dune build @doc-private
@echo Documentation is in _build/default/_doc/_html/libASL*/LibASL/index.html
clean::
$(RM) *~
dune clean
################################################################
# End
################################################################