Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / libwireless / logger / Makefile @ 1128

History | View | Annotate | Download (177 Bytes)

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

    
4
all: logger
5

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

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