-
Notifications
You must be signed in to change notification settings - Fork 236
Expand file tree
/
Copy pathMakefile
More file actions
61 lines (49 loc) · 1.66 KB
/
Makefile
File metadata and controls
61 lines (49 loc) · 1.66 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.PHONY: clean default check linting pre-coverage
VER = $(shell meson introspect _build/ --projectinfo | jq -r '.version' && rm -rf _build)
DESTDIR ?= ../tmproot
PWD := $(shell pwd)
default: _build
meson compile -C _build --verbose
_build:
meson setup _build --prefix=/usr
_build-cov:
meson setup _build-cov --prefix=/usr -Db_coverage=true
clean:
rm -f netplan_cli/_features.py src/_features.h src/_features.h.gch
rm -f generate doc/*.html doc/*.[1-9]
rm -f *.o *.so*
rm -f netplan-dbus dbus/*.service
rm -f *.gcda *.gcno generate.info
rm -f tests/ctests/*.gcda tests/ctests/*.gcno
rm -rf test-coverage .coverage
rm -f .coverage.* coverage.xml
find . | grep -E "(__pycache__|\.pyc)" | xargs rm -rf
rm -rf build
rm -rf _build
rm -rf _build-cov
rm -rf _leakcheckbuild
rm -rf _cleanbuild
rm -rf tmproot
rm -f python-cffi/netplan/_netplan_cffi.*
rm -f tools/keyfile_to_yaml
dist: clean _build
tar --exclude="_build" --exclude=".git" --exclude="debian" --exclude=".vscode" -cvJf ../netplan-$(VER).tar.xz .
ln -sf netplan-$(VER).tar.xz ../netplan.io_$(VER).orig.tar.xz # Debian .orig symlink
check: default
meson test -C _build --verbose
linting: _build
meson test -C _build --verbose linting
meson test -C _build --verbose codestyle
pre-coverage: _build-cov
meson compile -C _build-cov --verbose
check-coverage: pre-coverage
meson test -C _build-cov --verbose
install: default
meson install -C _build --destdir $(DESTDIR)
run:
@sudo \
NETPLAN_GENERATE_PATH="$(PWD)/_build/src/generate" \
NETPLAN_CONFIGURE_PATH="$(PWD)/_build/src/configure" \
LD_LIBRARY_PATH="$(PWD)/_build/src" \
PYTHONPATH="$(PWD)/_build/python-cffi:$(PWD)" \
tmproot/usr/sbin/netplan $(ARGS)