Update the changelog
[opencv] / apps / HaarFaceDetect / Makefile.am
1 # use the default c++ flags
2 AM_CXXFLAGS=@DEF_CXXFLAGS@
3
4 # here it is our binary program
5 bin_PROGRAMS = HaarFaceDetect
6
7 HaarFaceDetect_SOURCES = facedetect.cpp
8
9 # here you should add all header files, which shouldn't be installed
10 noinst_HEADERS = cvfltk.h
11
12 SUBDIRS =
13
14 EXTRA_DIST = SampleBase HaarFaceDetect.dsp
15
16 # add here the libraries which have to be include
17 # for building the shared lib
18 #
19 #  please consider also the usage of the make environment variables
20 #  like
21 #  $(LIB_KDEUI), $(LIB_QT), $(LIB_HTML), etc.
22 #  instead of the hardcoded entries, which have placed
23 #  in here.
24 #  The following line is only a suggestion!
25 #
26 HaarFaceDetect_LDADD = 
27
28 # INCLUDES +=  -I./ -I../../cv/include -I../../cvaux/include @DEBUG@ $(X_CFLAGS)
29 INCLUDES = -I../../cv/include -I./ -I../../cvaux/include -I../../otherlibs/highgui `@FLTKCONFIG@ --cxxflags`
30 LIBS = -L../../cv/src -lopencv -L../../cvaux/src -lcvaux -L../../otherlibs/highgui -lhighgui `@FLTKCONFIG@ --ldflags`