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.
12 lines
226 B
12 lines
226 B
18 years ago
|
CC?=gcc
|
||
|
CFLAGS+=-I../libowfat -Wall -O2 -pipe
|
||
|
LDFLAGS+=-L../libowfat/ -lowfat -s
|
||
|
|
||
|
SOURCES=opentracker.c trackerlogic.c
|
||
|
|
||
|
opentracker: $(SOURCES)
|
||
|
$(CC) $(SOURCES) -o opentracker $(CFLAGS) $(LDFLAGS)
|
||
|
|
||
|
clean:
|
||
|
rm -rf opentracker
|