-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
42 lines (35 loc) · 967 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
38
39
40
41
#
# Copyright (c) 2018-2020 by Kristoffer Paulsson <[email protected]>.
#
# This software is available under the terms of the MIT license. Parts are licensed under
# different terms if stated. The legal terms are attached to the LICENSE file and are
# made available on:
#
# https://opensource.org/licenses/MIT
#
# SPDX-License-Identifier: MIT
#
# Contributors:
# Kristoffer Paulsson - initial implementation
#
PYI = --log=DEBUG --onefile
AR7_IMPORT = uuid pathlib
.PHONY: install check clean
default:
echo ""
install:
python setup.py venv --prefix=$(DESTDIR)
docs:
python setup.py build_sphinx
check:
echo ""
clean:
rm -fr ./dist/
rm -fr ./build/
rm -fr ./angelos-*/dist/
rm -fr ./angelos-*/build/
find ./angelos-*/src -name \*.egg-info -type d -delete
find ./angelos-*/src -name \*.so -type f -delete
find ./angelos-*/src -name \*.dylib -type f -delete
find ./angelos-*/src -name \*.pyd -type f -delete
rm -fr ./docs/api/*