Update to 2.0.0 tree from current Fremantle build
[opencv] / samples / c / makefile.gnu
diff --git a/samples/c/makefile.gnu b/samples/c/makefile.gnu
deleted file mode 100644 (file)
index f6455bc..0000000
+++ /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)