summarylogtreecommitdiffstats
path: root/Makefile
blob: a2291f9f7ffd2d0798b9fa5c3582a7f6b515890e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Makefile
#
# Meant to help with maintaining.

all: .SRCINFO

release: all build check
	@echo
	@echo 'ready to release!'

.SRCINFO: PKGBUILD
	makepkg --printsrcinfo > $@

build:
	makepkg -s

clean:
	git clean -dfx

check:
	namcap PKGBUILD
	namcap *.tar.zst

.PHONY: build clean check release