opentracker – An open and free bittorrent tracker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
CC?=gcc
|
|
|
|
FEATURES=-DWANT_IP_FROM_QUERY_STRING #-DWANT_BLACKLIST -DWANT_CLOSED_TRACKER
|
|
|
|
#DEBUG_OPTS=-g -ggdb -pg # -fprofile-arcs -ftest-coverage
|
|
|
|
DEBUG_OPTS=-s -Os
|
|
|
|
CFLAGS+=-I../libowfat -Wall -pipe # -pedantic -ansi
|
|
|
|
LDFLAGS+=-L../libowfat/ -lowfat -lm
|
|
|
|
|
|
|
|
HEADERS=trackerlogic.h scan_urlencoded_query.h
|
|
|
|
SOURCES=opentracker.c trackerlogic.c scan_urlencoded_query.c
|
|
|
|
|
|
|
|
opentracker: $(SOURCES) $(HEADERS)
|
|
|
|
$(CC) $(SOURCES) -o opentracker $(CFLAGS) $(FEATURES) $(DEBUG_OPTS) $(LDFLAGS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf opentracker
|