diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-09-30 19:01:58 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-09-30 19:01:58 +0300 |
commit | eedc83800a867d34156b5c313510707a17016c6b (patch) | |
tree | e2f5a0fc92887ff915f37815d0f8cfe902032c2e /debian/samples | |
download | opencv-debian.tar.gz |
Imported opencv 2.4.9.1+dfsg1-2debian/2.4.9.1+dfsg1-2debian
Diffstat (limited to 'debian/samples')
-rw-r--r-- | debian/samples/c/Makefile.debian | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/samples/c/Makefile.debian b/debian/samples/c/Makefile.debian new file mode 100644 index 0000000..66afb33 --- /dev/null +++ b/debian/samples/c/Makefile.debian @@ -0,0 +1,15 @@ +all: contours convert_cascade delaunay fback_c morphology motempl \ + polar_transforms pyramid_segmentation adaptiveskindetector \ + bgfg_codebook blobtrack_sample facedetect find_obj_calonder \ + find_obj find_obj_ferns latentsvmdetect mser_sample mushroom \ + one_way_sample tree_engine example_cmake/minarea + +example_cmake/minarea: example_cmake/minarea.c + +CPPFLAGS += $(shell pkg-config opencv --cflags) +LOADLIBES += $(shell pkg-config opencv --libs) +LOADLIBES += -lm +CFLAGS += -Wall +CXXFLAGS += -Wall +CFLAGS += -O2 +CXXFLAGS += -O2 |