Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (337 Bytes)

1 122 jscheine
CC = gcc
2
CFLAGS = -Wall -g
3
4
TARGET=test_main
5
6
all: $(TARGET)
7
ifndef COLONYROOT
8 206 justin
COLONYROOT = ../../../../..
9 122 jscheine
endif
10
11 157 jscheine
all: $(TARGET)
12
13 122 jscheine
$(TARGET): *.c  *.h
14 157 jscheine
	$(CC) $(CFLAGS) *.c -I$(COLONYROOT)/code/lib/include/libdragonfly -I$(COLONYROOT)/code/lib/include/libwireless -L$(COLONYROOT)/code/lib/bin -o $(TARGET) -lwireless
15 122 jscheine
16
clean:
17
	rm $(TARGET)