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.

12 lines
254 B

18 years ago
CC?=gcc
CFLAGS+=-I../libowfat -Wall -pipe -O2
18 years ago
LDFLAGS+=-L../libowfat/ -lowfat -s -lm
18 years ago
SOURCES=opentracker.c trackerlogic.c scan_urlencoded_query.c
18 years ago
opentracker: $(SOURCES)
$(CC) $(SOURCES) -o opentracker $(CFLAGS) $(LDFLAGS)
clean:
rm -rf opentracker