mirror of
https://platform.sunet.se/SUNET/knotctl.git
synced 2025-05-27 18:08:28 +02:00
14 lines
264 B
Makefile
14 lines
264 B
Makefile
|
.PHONY: publish
|
||
|
publish:
|
||
|
flit publish
|
||
|
|
||
|
.PHONY: deb
|
||
|
deb:
|
||
|
briefcase update linux system --target debian:testing
|
||
|
briefcase build linux system --target debian:testing
|
||
|
briefcase package linux system --target debian:testing
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -rf build dist
|