gits-protocol

Git over TLS
git clone git://git.rr3.xyz/gits-protocol | git clone gits://git.rr3.xyz/gits-protocol
Log | Files | Refs | README

commit 6c6dfcf9b776db974d7127e07e8dc14fc73a18ae
parent 939158694a1c0de8c5731b118a33a7877116a80d
Author: Robert Russell <robert@rr3.xyz>
Date:   Wed, 20 May 2026 16:19:37 -0700

Create Makefile

Diffstat:
AMakefile | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,15 @@ +.POSIX: + +PREFIX = /usr/local + +noop: + +install: + mkdir -p $(DESTDIR)$(PREFIX)/bin + cp -f git-remote-gits $(DESTDIR)$(PREFIX)/bin/ + chmod 755 $(DESTDIR)$(PREFIX)/bin/git-remote-gits + +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/git-remote-gits + +.PHONY: install uninstall