Browse Source

chore: add `CONTRIBUTORS` target to Makefile

master
Harald Hoyer 4 years ago committed by Harald Hoyer
parent
commit
1a604e2a4a
  1. 5
      Makefile

5
Makefile

@ -45,7 +45,7 @@ man8pages = dracut.8 \


manpages = $(man1pages) $(man5pages) $(man7pages) $(man8pages) manpages = $(man1pages) $(man5pages) $(man7pages) $(man8pages)


.PHONY: install clean archive rpm srpm testimage test all check AUTHORS doc dracut-version.sh .PHONY: install clean archive rpm srpm testimage test all check AUTHORS CONTRIBUTORS doc dracut-version.sh


all: dracut-version.sh dracut.pc dracut-install skipcpio/skipcpio all: dracut-version.sh dracut.pc dracut-install skipcpio/skipcpio


@ -284,6 +284,9 @@ efi: all
AUTHORS: AUTHORS:
git shortlog --numbered --summary -e |while read a rest || [ -n "$$rest" ]; do echo $$rest;done > AUTHORS git shortlog --numbered --summary -e |while read a rest || [ -n "$$rest" ]; do echo $$rest;done > AUTHORS


CONTRIBUTORS:
@git shortlog $(DRACUT_MAIN_VERSION).. --numbered --summary -e |while read a rest || [ -n "$$rest" ]; do echo "- $$rest";done

dracut.html.sign: dracut-$(DRACUT_MAIN_VERSION).tar.xz dracut.html dracut.html.sign: dracut-$(DRACUT_MAIN_VERSION).tar.xz dracut.html
gpg-sign-all dracut-$(DRACUT_MAIN_VERSION).tar.xz dracut.html gpg-sign-all dracut-$(DRACUT_MAIN_VERSION).tar.xz dracut.html



Loading…
Cancel
Save