~ubuntu-branches/ubuntu/trusty/libcmis/trusty

« back to all changes in this revision

Viewing changes to src/libcmis-c/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2014-02-05 14:41:34 UTC
  • mfrom: (1.1.5) (2.1.6 experimental)
  • Revision ID: package-import@ubuntu.com-20140205144134-ffvov1moblfapn82
Tags: 0.4.1-3ubuntu1
* Resynchronize on Debian, remaining change:
* debian/patches/powerpc64le.diff: build on ppc64el

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
        object-type.h \
11
11
        property.h \
12
12
        property-type.h \
 
13
        oauth2-data.h \
 
14
        rendition.h \
13
15
        repository.h \
14
16
        types.h \
15
17
        session.h \
16
18
        session-factory.h \
17
 
        vectors.h
 
19
        vectors.h \
 
20
        libcmis-c.h
18
21
 
19
22
lib_LTLIBRARIES = libcmis-c-@LIBCMIS_API_VERSION@.la
20
23
libcmis_c_@LIBCMIS_API_VERSION@_la_SOURCES = \
21
 
        $(libcmis_c_headers_public) \
22
24
        allowable-actions.cxx \
23
25
        document.cxx \
24
26
        error.cxx \
31
33
        repository.cxx \
32
34
        session.cxx \
33
35
        session-factory.cxx \
34
 
        vectors.cxx
 
36
        vectors.cxx \
 
37
        oauth2-data.cxx \
 
38
        rendition.cxx
35
39
 
36
 
libcmis_c_@LIBCMIS_API_VERSION@_la_LDFLAGS = -export-dynamic -no-undefined -version-info 3:1:0
 
40
libcmis_c_@LIBCMIS_API_VERSION@_la_LDFLAGS = -export-dynamic -no-undefined -version-info 4:1:0
37
41
 
38
42
libcmis_c_@LIBCMIS_API_VERSION@_la_LIBADD = \
 
43
        ../libcmis/libcmis-@LIBCMIS_API_VERSION@.la \
39
44
        $(XML2_LIBS) \
40
45
        $(CURL_LIBS) \
41
46
        $(BOOST_SMART_PTR_LIBS) \
42
47
        $(BOOST_DATE_TIME_LIBS)
43
48
 
44
49
libcmis_c_@LIBCMIS_API_VERSION@_la_includedir = $(includedir)/libcmis-c-@LIBCMIS_API_VERSION@/libcmis-c
45
 
 
46
 
if ENABLE_TESTS
47
 
check_PROGRAMS = \
48
 
        test-api \
49
 
        test-c-build
50
 
 
51
 
test_api_SOURCES = \
52
 
        test-api.cxx \
53
 
        test-allowable-actions.cxx \
54
 
        test-document.cxx \
55
 
        test-dummies.hxx \
56
 
        test-dummies.cxx \
57
 
        test-folder.cxx \
58
 
        test-object.cxx \
59
 
        test-object-type.cxx \
60
 
        test-property.cxx \
61
 
        test-property-type.cxx \
62
 
        test-repository.cxx
63
 
 
64
 
test_api_CXXFLAGS = -I$(top_srcdir)/src/ $(XML2_CFLAGS) $(BOOST_CPPFLAGS)
65
 
 
66
 
test_api_LDADD = \
67
 
        libcmis-c-@LIBCMIS_API_VERSION@.la \
68
 
        $(top_builddir)/src/libcmis/libcmis-@LIBCMIS_API_VERSION@.la \
69
 
        $(XML2_LIBS) \
70
 
        $(CURL_LIBS) \
71
 
        $(CPPUNIT_LIBS) \
72
 
        $(BOOST_DATE_TIME_LIBS)
73
 
 
74
 
test_c_build_SOURCES = \
75
 
        test-build.c
76
 
 
77
 
test_c_build_CFLAGS = -I$(top_srcdir)/src/ $(XML2_CFLAGS)
78
 
 
79
 
test_c_build_LDADD = \
80
 
        libcmis-c-@LIBCMIS_API_VERSION@.la \
81
 
        $(top_builddir)/src/libcmis/libcmis-@LIBCMIS_API_VERSION@.la \
82
 
        $(XML2_LIBS) \
83
 
        $(CURL_LIBS) \
84
 
        $(CPPUNIT_LIBS) \
85
 
        $(BOOST_DATE_TIME_LIBS)
86
 
 
87
 
TESTS = test-api
88
 
 
89
 
endif