summarylogtreecommitdiffstats
path: root/Makefile
blob: ec0ba7c02f7cdff2b4cbf8b52b570a2b70eb3ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
build:
	makepkg --syncdeps;

install:
	sudo pacman -U --noconfirm *.zst;

uninstall:
	sudo pacman -Rns --noconfirm python-confy-addons;

clean:
	rm -rf src pkg cli;
	rm -f *.zst;

srcinfo:
	makepkg --printsrcinfo > .SRCINFO;

.PHONY: pkgbuild clean build install uninstall srcinfo