Add tests for the restore command
[aur.git] / git-interface / Makefile
blob88657904081ee6f30774e7307645b5e120e74e6c
1 GIT_INTERFACE_DIR := $(abspath $(dir $(lastword $(MAKEFILE_LIST))))
3 include config.mk
5 git-auth.sh:
6 sed 's#%GIT_INTERFACE_DIR%#$(GIT_INTERFACE_DIR)#' <git-auth.sh.in >git-auth.sh
7 chmod +x git-auth.sh
9 install: git-auth.sh
10 install -Dm0755 git-auth.sh "$(DESTDIR)$(PREFIX)/bin/aur-git-auth"
12 uninstall:
13 rm -f "$(DESTDIR)$(PREFIX)/bin/aur-git-auth"
15 clean:
16 rm -f git-auth.sh
18 .PHONY: install uninstall clean