Project

General

Profile

Statistics
| Revision:

root / branches / autonomous_recharging / code / projects / libwireless / test / Makefile @ 340

History | View | Annotate | Download (166 Bytes)

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

    
4
all: test
5

    
6
test: *.c ../lib/*.c 
7
	$(CC) $(CFLAGS) *.c -L../lib -I../lib -o test -pthread -lrt -lwireless
8

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