Update the trunk to the OpenCV's CVS (2008-07-14)
[opencv] / samples / c / makefile.64
1 !include ..\..\_make\make_cfg.mak
2
3 CXX="$(PSDK)\bin\win64\x86\amd64\cl"
4 CXXFLAGS = /nologo /I"$(PSDK)/include" /I"$(PSDK)\include/crt" /I"$(PSDK)\include\mfc" \
5     /I"$(PSDK)\include\atl" /I"..\..\cxcore\include" /I"..\..\cv\include" \
6     /I"..\..\cvaux\include" /I"..\..\ml\include" /I"..\..\otherlibs\highgui"
7 LINKFLAGS = /link "/libpath:..\..\lib" "/libpath:$(PSDK)/lib/amd64" \
8     "/machine:AMD64" bufferoverflowu.lib cxcore_64.lib cv_64.lib \
9     cvaux_64.lib ml_64.lib highgui_64.lib
10
11 SAMPLES = blobtrack.exe camshiftdemo.exe contours.exe convert_cascade.exe \
12     convexhull.exe delaunay.exe  demhist.exe dft.exe distrans.exe \
13     drawing.exe edge.exe facedetect.exe ffilldemo.exe fitellipse.exe \
14     houghlines.exe kalman.exe kmeans.exe inpaint.exe laplace.exe \
15     letter_recog.exe lkdemo.exe minarea.exe morphology.exe motempl.exe \
16     pyramid_segmentation.exe squares.exe bgfg_segm.exe image.exe \
17     mushroom.exe watershed.exe
18
19 all: $(SAMPLES)
20
21 .c.exe:
22     @$(CXX) $(CXXFLAGS) $< $(LINKFLAGS)
23
24 .cpp.exe:
25     @$(CXX) $(CXXFLAGS) $< $(LINKFLAGS)