aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: d1a201b7f3958f97fd090fff69562865d28d0506 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
guix-sources = \
	src/xyz/euandreh/packages.scm \
	src/xyz/euandreh/posix.scm    \
	src/xyz/euandreh/latest.scm

all:
	for s in $(guix-sources); do guix build -f $$s; done
	nix-shell --run ''

refresh:
	sh scripts/paku -rg

check:
	sh aux/assert-shellcheck.sh
	sh aux/assert-nixfmt.sh
	sh aux/workflow/assert-todos.sh

clean:
	rm -rf public/

public:
	sh aux/workflow/public.sh "EuAndreh's package repository" package-repository public-inbox
	cp EuAndreh.key public/

.PHONY: all clean check refresh