Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (163 Bytes)

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