Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (223 Bytes)

1
CC = gcc
2
CFLAGS = -Wall -g
3

    
4
all: testbench
5

    
6
testbench: *.c ../../libwireless/lib/*.c 
7
	$(CC) $(CFLAGS) *.c -L../../libwireless/lib -o testbench -DWL_DEBUG -lwireless -lpthread -ggdb
8

    
9
clean:
10
	rm -f *.o testbench ../lib/*.o
11