Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / hunter_prey / testbench / Makefile @ 1461

History | View | Annotate | Download (223 Bytes)

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