From e16a57f733d1d28f0ec2548cfa06bcbdae9ef84e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 30 May 2025 13:28:36 -0400 Subject: [PATCH] add git-remote-tor-annex target Just for consistency, it makes the symlink for git-remote-annex and git-annex-shell, but not for git-remote-tor-annex despite that being another one of the multicall programs. --- .gitignore | 1 + Makefile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 125468c04f..a6daf2efd6 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ Build/MakeMans git-annex git-annex-shell git-remote-annex +git-remote-tor-annex man doc/.ikiwiki html diff --git a/Makefile b/Makefile index b2ee54db83..d387aaa63c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all=git-annex git-annex-shell git-remote-annex mans docs +all=git-annex git-annex-shell git-remote-annex git-remote-tor-annex mans docs # set to "./Setup" if you lack a cabal program. Or can be set to "stack" BUILDER?=cabal @@ -74,6 +74,9 @@ git-annex-shell: git-annex git-remote-annex: git-annex ln -sf git-annex git-remote-annex +git-remote-tor-annex: git-annex + ln -sf git-annex git-remote-tor-annex + install-mans: mans install -d $(DESTDIR)$(PREFIX)/$(SHAREDIR)/man/man1 install -m 0644 man/*.1 $(DESTDIR)$(PREFIX)/$(SHAREDIR)/man/man1