Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / mapping / matlab / Makefile @ 952

History | View | Annotate | Download (201 Bytes)

1
CC= gcc
2
CFLAGS= -Wall -g
3
LIBS= -lpthread -lwireless
4

    
5
all: test
6

    
7
test: *.c ../../libwireless/lib/*.c 
8
	$(CC) $(CFLAGS) *.c -L../../../lib/bin -o test -DWL_DEBUG $(LIBS)
9

    
10
clean:
11
	rm *.o test ../lib/*.o
12