blob: 9e139f1a6ae4ca04dde2cf9d6c4e1478b0b45a4f (
plain)
1
2
3
4
5
6
7
8
9
10
|
.PHONY: all help clean
all: help
help:
@echo "help - print this help message"
@echo "clean - clean this repository"
clean:
rm -rfv ./src ./pkg ./v*.tar.gz ./*.pkg.tar.xz qubes-pass
|