torrentd

simple torrent daemon
git clone git://git.2f30.org/torrentd
Log | Files | Refs | LICENSE

commit c3af4b0ae222708c4ac23c5955910dc10e4c2991
parent bc05f32565e53ec9a901d16d75104a917807fc7e
Author: sin <sin@2f30.org>
Date:   Sun, 27 Dec 2015 17:53:42 +0000

rename to storrentd

Diffstat:
MMakefile | 6+++---
Rstorrent.c -> storrentd.c | 0
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -11,15 +11,15 @@ LIBS = -L$(CURLLIB) -lcurl CFLAGS = -g -std=c99 -Wall -Wextra $(INCS) LDFLAGS = $(LIBS) -OBJ = storrent.o sha1.o -BIN = storrent +OBJ = storrentd.o sha1.o +BIN = storrentd all: $(BIN) $(BIN): $(OBJ) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LDLIBS) -$(OBJ): queue.h sha1.h storrent.h +$(OBJ): queue.h sha1.h install: all mkdir -p $(DESTDIR)$(PREFIX)/bin diff --git a/storrent.c b/storrentd.c