From 0904c8c0b52a8f34320a9dd7366f80cc20577ff4 Mon Sep 17 00:00:00 2001 From: udeved Date: Mon, 2 Mar 2015 23:35:36 +0100 Subject: [PATCH] v 0.9.7 --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 79f55c0..f60ce8e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -V=0.9.6.5 +V=0.9.7 PREFIX = $(PREFIX)/local @@ -73,6 +73,10 @@ SCRIPTS = \ scripts/livecd \ scripts/kbd-model-map +EFISHELL = \ + efi_shell/shellx64_v1.efi \ + efi_shell/shellx64_v2.efi + all: $(BINPROGS) #bin/bash_completion bin/zsh_completion edit = sed -e "s|@pkgdatadir[@]|$(DESTDIR)$(PREFIX)/share/manjaro-tools|g" \ @@ -111,6 +115,8 @@ install: install -m0755 ${CPIOINST} $(DESTDIR)$(PREFIX)/lib/initcpio/install install -dm0755 $(DESTDIR)$(PREFIX)/share/manjaro-tools/scripts install -m0644 ${SCRIPTS} $(DESTDIR)$(PREFIX)/share/manjaro-tools/scripts + install -dm0755 $(DESTDIR)$(PREFIX)/share/manjaro-tools/efi_shell + install -m0644 ${EFISHELL} $(DESTDIR)$(PREFIX)/share/manjaro-tools/efi_shell # install -Dm0644 bin/bash_completion $(DESTDIR)/$(PREFIX)/share/bash-completion/completions/manjaro_tools # install -Dm0644 bin/zsh_completion $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_manjaro_tools @@ -126,7 +132,7 @@ uninstall: for f in ${CPIOHOOKS}; do rm -f $(DESTDIR)$(PREFIX)/lib/initcpio/hooks/$$f; done for f in ${CPIOINST}; do rm -f $(DESTDIR)$(PREFIX)/lib/initcpio/install/$$f; done for f in ${SCRIPTS}; do rm -f $(DESTDIR)$(PREFIX)/share/manjaro-tools/scripts/$$f; done - + for f in ${EFISHELL}; do rm -f $(DESTDIR)$(PREFIX)/share/manjaro-tools/efi_shell/$$f; done # rm $(DESTDIR)/$(PREFIX)/share/bash-completion/completions/manjaro_tools # rm $(DESTDIR)$(PREFIX)/share/zsh/site-functions/_manjaro_tools