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

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

uninstall:
	sudo yay -R --noconfirm confy-app;

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

srcinfo:
	makepkg --printsrcinfo > .SRCINFO;

.PHONY: pkgbuild clean build install uninstall srcinfo