aboutsummarylogtreecommitdiffstats
path: root/Makefile
blob: 4e496aa5d8b79ace005f3572d82ccf21df2a2274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clean:
	sudo rm -rf pkg/ src/ fe/ *.zst fe-*.tar.gz

srcinfo:
	makepkg --printsrcinfo > .SRCINFO

install:
	make clean
	make srcinfo
	makepkg -si
	make clean

release:
	make clean
	updpkgsums
	make srcinfo
	git add -A
	git commit --allow-empty -am "new release"
	git push
	make clean