Project

General

Profile

Statistics
| Revision:

root / branches / slam / code / projects / slam / computer / Makefile @ 121

History | View | Annotate | Download (231 Bytes)

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

    
4
all: computer_main
5
ifndef COLONYROOT
6
COLONYROOT = ../../..
7
endif
8

    
9
computer_main: *.c 
10
	$(CC) $(CFLAGS) computer_main.c -L$(COLONYROOT)/code/lib/bin -o computer_main -lwireless
11

    
12
clean:
13
	rm computer_main
14