source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/Superpixels/SourceCode/segment/Makefile @ 86

Last change on this file since 86 was 37, checked in by (none), 15 years ago

Added original make3d

File size: 338 bytes
Line 
1INCDIR = -I.
2DBG    = -g
3OPT    = -O3
4CPP    = g++
5CFLAGS = $(DBG) $(OPT) $(INCDIR)
6LINK   = -lm
7
8.cpp.o:
9        $(CPP) $(CFLAGS) -c $< -o $@
10
11all: segment
12
13segment: segment.cpp segment-image.h segment-graph.h disjoint-set.h
14        $(CPP) $(CFLAGS) -o segment segment.cpp $(LINK)
15
16clean:
17        /bin/rm -f segment *.o
18
19clean-all: clean
20        /bin/rm -f *~
21
22
23
Note: See TracBrowser for help on using the repository browser.