aboutsummarylogtreecommitdiffstats
path: root/Makefile
blob: bcba9994fe1ae616198eaf58bde7fafb56203062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# https://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html

.PHONY: lint build install

PACKAGE := altogether-*.pkg.tar.xz

init:
	sudo chown -R aur:wheel /home/aur

lint:
	namcap PKGBUILD

build:
	makepkg
	makepkg --printsrcinfo > .SRCINFO
	namcap $(PACKAGE)

install:
	sudo pacman -U --noconfirm $(PACKAGE)

include *.mk