From 8866118d6d8f2a6f83b3ec6c32fe70411218180d Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 6 Jun 2018 15:28:25 +0200 Subject: add Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e2b2cae --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +# Makefile for mkinitcpio-passwd + +VERSION=0.1.0 + +all: + @echo "Just run make install..." + +.PHONY: install +install: + install -D -m0644 hook/passwd $(DESTDIR)/usr/lib/initcpio/hooks/passwd + install -D -m0644 install/passwd $(DESTDIR)/usr/lib/initcpio/install/passwd + +release: + git archive --format=tar.xz --prefix=mkinitcpio-passwd-$(VERSION)/ $(VERSION) > mkinitcpio-passwd-$(VERSION).tar.xz + gpg -ab mkinitcpio-passwd-$(VERSION).tar.xz + git notes --ref=refs/notes/signatures/tar add -C $$(git archive --format=tar --prefix=mkinitcpio-passwd-$(VERSION)/ $(VERSION) | gpg --armor --detach-sign | git hash-object -w --stdin) $(VERSION) -- cgit v1.2.3-54-g00ecf