Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (166 Bytes)

1 17 bcoltin
CC = gcc
2
CFLAGS = -Wall -g
3
4
all: test
5
6
test: *.c ../lib/*.c
7 340 bcoltin
	$(CC) $(CFLAGS) *.c -L../lib -I../lib -o test -pthread -lrt -lwireless
8 17 bcoltin
9
clean:
10
	rm *.o test ../lib/*.o