Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / mapping / server / Makefile @ 908

History | View | Annotate | Download (193 Bytes)

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

    
4
all: test
5

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

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