libcap/Makefile
Andrew G Morgan 3a788dd053 Adjustments to point to kernel.org locations.
Also include a copy of the public key I have to use to upload binaries
to kernel.org. Moving forward, I plan to sign release tags with both keys.

Signed-off-by: Andrew G Morgan <morgan@kernel.org>
2013-12-27 10:04:50 -08:00

37 lines
702 B
Makefile

#
# Makefile for libcap
#
topdir=$(shell pwd)
include Make.Rules
#
# flags
#
all install clean: %: %-here
$(MAKE) -C libcap $@
ifneq ($(PAM_CAP),no)
$(MAKE) -C pam_cap $@
endif
$(MAKE) -C progs $@
$(MAKE) -C doc $@
all-here:
install-here:
clean-here:
$(LOCALCLEAN)
distclean: clean
$(DISTCLEAN)
release: distclean
cd .. && ln -s libcap libcap-$(VERSION).$(MINOR) && tar cvfz libcap-$(VERSION).$(MINOR).tar.gz libcap-$(VERSION).$(MINOR)/* && rm libcap-$(VERSION).$(MINOR)
tagrelease: distclean
@echo "sign the tag twice: older DSA key; and newer RSA kernel.org key"
git tag -u D41A6DF2 -s libcap-$(VERSION).$(MINOR)
git tag -u E2CCF3F4 -s libcap-korg-$(VERSION).$(MINOR)
make release