summaryrefslogtreecommitdiff
path: root/bin/setup
blob: ea6b92cb62185be9fb3165f487e8e6a4e7be13b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

CFLAGS += -std=c99 -Wall -Wextra -Werror

all: $(HOME)/bin/autobuild $(HOME)/.ssh/id_rsa $(HOME)/.ssh/id_rsa.pub $(HOME)/.gnupg/secring.gpg

$(HOME)/bin/autobuild: $(HOME)/bin/autobuild.c
	$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ && chmod 6755 $@

$(HOME)/.ssh/id_rsa $(HOME)/.ssh/id_rsa.pub:
	ssh-keygen -N '' -f $@

$(HOME)/.gnupg/secring.gpg:
	printf '%s\n' \
		'Key-Type: default' \
		'Subkey-Type: default' \
		'Name-Real: Parabola automatic package builder' \
		'Name-Email: dev@lists.parabolagnulinux.org' \
		'Expire-Date: 0' \
	| gpg --gen-key --batch

.DELETE_ON_ERROR: