My favorites | Sign in
Project Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#NOTICE: You must have opencv from sourceforge's cvs
APP = boxView3d
CC = g++
CFLAGS = -O3 -I /usr/local/include/opencv/ -I ./../../lib/
LDFLAGS = -L /usr/local/lib/ -lGL -lglut -lcv -lhighgui -lcvaux -lml -lcxcore -L ./../../lib/ -lehci
SRCS = boxView3d.cpp
OBJS = $(SRCS:.cpp=.o)

all: $(APP)


.cpp.o:
$(CC) $(CFLAGS) -c $< -o $@

$(APP): $(OBJS)
$(CC) $(OBJS) $(LDFLAGS) -o$(APP)

clean:
rm -f *.o *~ $(APP)
Show details Hide details

Change log

r80 by danielbaggio on Jul 26, 2008   Diff
Library is now ready to be configured and
built
Go to: 
Project members, sign in to write a code review

Older revisions

r8 by danielbaggio on May 31, 2008   Diff
BoxView draft commit
All revisions of this file

File info

Size: 440 bytes, 19 lines
Hosted by Google Code