aboutsummarylogtreecommitdiffstats
path: root/Makefile
blob: 737dce4712f32ab03c5eed2f345251454920bcb6 (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

srcinfo:
	makepkg --printsrcinfo > .SRCINFO

install:
	make clean
	make srcinfo
	makepkg -si
	make clean

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