mirror of git://erdgeist.org/opentracker
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.
42 lines
1.3 KiB
42 lines
1.3 KiB
CC?=gcc |
|
#FEATURES =-DWANT_TRACKER_SYNC |
|
#FEATURES+=-DWANT_BLACKLISTING |
|
#FEATURES+=-DWANT_CLOSED_TRACKER |
|
#FEATURES+=-DWANT_UTORRENT1600_WORKAROUND |
|
#FEATURES+=-DWANT_IP_FROM_QUERY_STRING |
|
#FEATURES+=-DWANT_COMPRESSION_GZIP |
|
#FEATURES+=-D_DEBUG_HTTPERROR |
|
|
|
OPTS_debug=-g -ggdb #-pg # -fprofile-arcs -ftest-coverage |
|
OPTS_production=-Os |
|
CFLAGS+=-I../libowfat -Wall -pipe -Wextra #-pedantic -ansi |
|
LDFLAGS+=-L../libowfat/ -lowfat -pthread -lz |
|
|
|
BINARY =opentracker |
|
HEADERS=trackerlogic.h scan_urlencoded_query.h ot_mutex.h ot_stats.h ot_sync.h ot_vector.h ot_clean.h ot_udp.h ot_iovec.h ot_fullscrape.h ot_accesslist.h ot_http.h |
|
SOURCES=opentracker.c trackerlogic.c scan_urlencoded_query.c ot_mutex.c ot_stats.c ot_sync.c ot_vector.c ot_clean.c ot_udp.c ot_iovec.c ot_fullscrape.c ot_accesslist.c ot_http.c |
|
|
|
OBJECTS = $(SOURCES:%.c=%.o) |
|
OBJECTS_debug = $(SOURCES:%.c=%.debug.o) |
|
|
|
.SUFFIXES: .debug.o .o .c |
|
|
|
all: $(BINARY) $(BINARY).debug |
|
|
|
CFLAGS_production = $(CFLAGS) $(OPTS_production) $(FEATURES) |
|
CFLAGS_debug = $(CFLAGS) $(OPTS_debug) $(FEATURES) |
|
|
|
$(BINARY): $(OBJECTS) |
|
$(CC) -o $@ $(OBJECTS) $(LDFLAGS) |
|
strip $@ |
|
$(BINARY).debug: $(OBJECTS_debug) $(HEADERS) |
|
$(CC) -o $@ $(OBJECTS_debug) $(LDFLAGS) |
|
|
|
.c.debug.o : $(HEADERS) |
|
$(CC) -c -o $@ $(CFLAGS_debug) $(<:.debug.o=.c) |
|
|
|
.c.o : $(HEADERS) |
|
$(CC) -c -o $@ $(CFLAGS_production) $< |
|
|
|
clean: |
|
rm -rf opentracker opentracker.debug *.o *~
|
|
|