Project

General

Profile

Statistics
| Revision:

root / trunk / code / behaviors / hunter_prey / ref / Makefile.old @ 1850

History | View | Annotate | Download (199 Bytes)

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

    
4
all: ref
5

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

    
9
clean:
10
	rm -f *.o ref ../lib/*.o
11