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 26 27
|
export JETRING_SIGN=$(shell if [ -e admins.gpg ]; then echo admins.gpg; else echo "** Warning: Generating keyring without checking signatures!" >&2 ; fi)
all: admins.gpg debian-maintainers.gpg
debian-maintainers.gpg: debian-maintainers/index
jetring-build -I $@ debian-maintainers
admins.gpg: admins/index
jetring-build -I $@ admins
test:
./runtests
rsync-keys:
@mkdir -p cache
@if [ "$$ONLINE" != n ]; then \
echo "Updating Debian keyring cache" >&2; \
rsync -qcltz --block-size=8192 --partial --progress --exclude='emeritus-*' --exclude='removed-*' 'keyring.debian.org::keyrings/keyrings/*' cache/; \
else \
echo "Not updating Debian keyring cache, ONLINE=n is set" >&2; \
fi
clean:
rm -f debian-maintainers.gpg* admins.gpg.*
distclean: clean
rm -rf cache
|