Update the changelog
[opencv] / otherlibs / cvcam / src / unix / Makefile.am
1 lib_LTLIBRARIES = libcvcam.la
2
3 libcvcam_la_SOURCES = convert.cpp cvvideo.cpp dialogs.cpp render.cpp
4
5
6 EXTRA_DIST = 
7
8 SOMAJOR = @MMAJOR@
9 SOMINOR = @MMINOR@
10 SOSUBMINOR = @MSUBMINOR@
11
12 # here you should add all header files, which contains the functionality
13 # of your shared lib (published for the users)
14 include_HEADERS =
15
16 # here you should add all header files, which shouldn
17 noinst_HEADERS = convert.h cvvidtypes.h dialogs.h icvvideo.h render.h videodev.h
18
19 libcvcam_la_LDFLAGS = -no-undefined -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) @LDFLAGS@ $(X_LIBS) -L../../../highgui/.libs -L../../../../cv/src/.libs
20
21 # add here the libraries which have to be include
22 # for building the shared lib
23 #
24 #  please consider also the usage of the make environment variables
25 #  like
26 #  $(LIB_KDEUI), $(LIB_QT), $(LIB_HTML), etc.
27 #  instead of the hardcoded entries, which have placed
28 #  in here.
29 #  The following line is only a suggestion!
30 #
31 libcvcam_la_LIBADD = -lX11 -lXext -lXaw
32
33 INCLUDES = $(all_includes) -I../../include -I../../../../cv/include -I../../../highgui
34
35 AM_CXXFLAGS = @CXXFLAGS@ @DEBUG@ -D_XOPEN_SOURCE=500