tor-dam

tor distributed announce mechanism (not a dht)
git clone https://git.parazyd.org/tor-dam
Log | Files | Refs | README | LICENSE

Makefile (318B)


      1 # See LICENSE file for copyright and license details.
      2 
      3 PREFIX ?= /usr/local
      4 
      5 all:
      6 	@echo 'Run "make install" to install into $(DESTDIR)$(PREFIX)'
      7 
      8 install:
      9 	@make -C python install
     10 	@make -C contrib install install-init
     11 
     12 uninstall:
     13 	@make -C python uninstall
     14 	@make -C contrib uninstall
     15 
     16 .PHONY: all install uninstall