mirror of
git://erdgeist.org/opentracker
synced 2025-07-23 08:55:19 +02:00
tidy up options
This commit is contained in:
parent
17c21a0bc4
commit
6b329a6959
1 changed files with 6 additions and 3 deletions
9
Makefile
9
Makefile
|
@ -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…
Add table
Reference in a new issue