summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 05e8dca..bff7daf 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,10 @@ CC?=gcc
2CFLAGS+=-I../libowfat -Wall -pipe -O2 2CFLAGS+=-I../libowfat -Wall -pipe -O2
3LDFLAGS+=-L../libowfat/ -lowfat -s -lm 3LDFLAGS+=-L../libowfat/ -lowfat -s -lm
4 4
5HEADERS=trackerlogic.h scan_urlencoded_query.h
5SOURCES=opentracker.c trackerlogic.c scan_urlencoded_query.c 6SOURCES=opentracker.c trackerlogic.c scan_urlencoded_query.c
6 7
7opentracker: $(SOURCES) 8opentracker: $(SOURCES) $(HEADERS)
8 $(CC) $(SOURCES) -o opentracker $(CFLAGS) $(LDFLAGS) 9 $(CC) $(SOURCES) -o opentracker $(CFLAGS) $(LDFLAGS)
9 10
10clean: 11clean: