Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (331 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
	$(CC) $(CFLAGS) *.c -I$(COLONYROOT)/code/lib/include/libdragonfly -I$(COLONYROOT)/code/lib/include/libwireless -L$(COLONYROOT)/code/lib/bin -o $(TARGET) -lwireless
15

    
16
clean:
17
	rm $(TARGET)