mirror of git://erdgeist.org/opentracker
tidy up options
parent
17c21a0bc4
commit
6b329a6959
@ -1,12 +1,15 @@
|
||||
CC?=gcc
|
||||
CFLAGS+=-I../libowfat -Wall -pipe -Os # -DWANT_BLACKLIST -DWANT_CLOSED_TRACKER -DWANT_IP_FROM_QUERY_STRING -g -ggdb
|
||||
LDFLAGS+=-L../libowfat/ -lowfat -s -lm
|
||||
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
|
||||
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) $(LDFLAGS)
|
||||
$(CC) $(SOURCES) -o opentracker $(CFLAGS) $(FEATURES) $(DEBUG_OPTS) $(LDFLAGS)
|
||||
|
||||
clean:
|
||||
rm -rf opentracker
|
||||
|
Loading…
Reference in New Issue