Project

General

Profile

Statistics
| Revision:

root / branches / slam / code / projects / colonet / DataRequests / test / server / Makefile @ 201

History | View | Annotate | Download (347 Bytes)

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

    
4
TARGET=test_main
5

    
6
all: $(TARGET)
7
ifndef COLONYROOT
8
COLONYROOT = ../../..
9
endif
10

    
11
all: $(TARGET)
12

    
13
#$(TARGET): *.c  *.h
14
$(TARGET): *.c
15
	$(CC) $(CFLAGS) *.c -I$(COLONYROOT)/code/lib/include/libdragonfly -I$(COLONYROOT)/code/lib/include/libwireless -L$(COLONYROOT)/code/lib/bin -o $(TARGET) -lwireless
16

    
17
clean:
18
	rm $(TARGET)