Update the trunk to the OpenCV's CVS (2008-07-14)
[opencv] / samples / c / makefile.ms
1 CXX=cl
2 CXXFLAGS = /nologo /I"..\..\cxcore\include" /I"..\..\cv\include" \
3     /I"..\..\cvaux\include" /I"..\..\ml\include" /I"..\..\otherlibs\highgui"
4 LINKFLAGS = /link "/libpath:..\..\lib" cxcore.lib cv.lib cvaux.lib ml.lib highgui.lib
5
6 SAMPLES = blobtrack.exe camshiftdemo.exe contours.exe convert_cascade.exe \
7     convexhull.exe delaunay.exe  demhist.exe dft.exe distrans.exe \
8     drawing.exe edge.exe facedetect.exe ffilldemo.exe fitellipse.exe \
9     houghlines.exe kalman.exe kmeans.exe inpaint.exe laplace.exe \
10     letter_recog.exe lkdemo.exe minarea.exe morphology.exe motempl.exe \
11     pyramid_segmentation.exe squares.exe bgfg_segm.exe image.exe \
12     mushroom.exe watershed.exe
13
14 all: $(SAMPLES)
15
16 .c.exe:
17     @$(CXX) $(CXXFLAGS) $< $(LINKFLAGS)
18
19 .cpp.exe:
20     @$(CXX) $(CXXFLAGS) $< $(LINKFLAGS)