Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / libwireless / test / Makefile @ 336

History | View | Annotate | Download (153 Bytes)

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

    
4
all: test
5

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

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