X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=samples%2Fc%2Fmakefile.gnu;fp=samples%2Fc%2Fmakefile.gnu;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=f6455bc12d74612fe356a5ca450b7783c28d4de4;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/samples/c/makefile.gnu b/samples/c/makefile.gnu deleted file mode 100644 index f6455bc..0000000 --- a/samples/c/makefile.gnu +++ /dev/null @@ -1,19 +0,0 @@ -CXX=g++ -CXXFLAGS = -I"..\..\cxcore\include" -I"..\..\cv\include" \ - -I"..\..\cvaux\include" -I"..\..\ml\include" -I"..\..\otherlibs\highgui" -LINKFLAGS = -L"..\..\lib" -lcxcore -lcv -lcvaux -lml -lhighgui - -SAMPLES_C = $(notdir $(patsubst %.c, %.exe, $(wildcard *.c))) -SAMPLES_CPP = $(notdir $(patsubst %.cpp, %.exe, $(wildcard *.cpp))) - -SAMPLES = $(SAMPLES_C) $(SAMPLES_CPP) - -all: $(SAMPLES) - -%.exe: %.c - @echo $@ - @$(CXX) $(CXXFLAGS) -o $@ $< $(LINKFLAGS) - -%.exe: %.cpp - @echo $@ - @$(CXX) $(CXXFLAGS) -o $@ $< $(LINKFLAGS)