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

Makefile (265B)


      1 .POSIX:
      2 
      3 PREFIX = /usr/local
      4 
      5 noop:
      6 
      7 install:
      8 	mkdir -p $(DESTDIR)$(PREFIX)/bin
      9 	cp -f git-remote-gits $(DESTDIR)$(PREFIX)/bin/
     10 	chmod 755 $(DESTDIR)$(PREFIX)/bin/git-remote-gits
     11 
     12 uninstall:
     13 	rm -f $(DESTDIR)$(PREFIX)/bin/git-remote-gits
     14 
     15 .PHONY: install uninstall