Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / vision / Makefile @ 431

History | View | Annotate | Download (316 Bytes)

1 430 emarinel
# Makefile for vision.
2
3
default: vision fitellipse
4
5 431 emarinel
driver: vision_driver.c
6
7 430 emarinel
vision: vision.c
8
	mkdir -p bin
9 431 emarinel
	gcc -ggdb `pkg-config opencv --cflags --libs` -I . vision.c -o vision
10 430 emarinel
11
fitellipse: fitellipse.c
12 431 emarinel
	gcc -ggdb `pkg-config opencv --cflags --libs` fitellipse.c -o fitellipse
13 430 emarinel
14
clean:
15 431 emarinel
	rm -rf vision fitellipse *~