Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / hunter_prey / ref / Makefile @ 1466

History | View | Annotate | Download (199 Bytes)

1 1466 bneuman
CC = gcc
2
CFLAGS = -Wall -g
3
4
all: ref
5
6
ref: *.c ../../libwireless/lib/*.c
7
	$(CC) $(CFLAGS) *.c -L../../libwireless/lib -o ref -DWL_DEBUG -lwireless -lpthread -ggdb
8
9
clean:
10
	rm -f *.o ref ../lib/*.o