summarylogtreecommitdiffstats
path: root/Makefile
blob: ee35cec3e478c9eb96d67c8b0b8e0b5f2c3b96af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default: build

build: namcap
	makepkg
	mksrcinfo

clean:
	git clean -fd
	rm -rf pkg src *.deb *.tar.xz

namcap:
	namcap PKGBUILD

# too many failures we can't correct due to PKGBUILD design
shellcheck:
	shellcheck PKGBUILD

vet: namcap shellcheck