put changelog information to packages
[platform/upstream/libzypp.git] / zypp / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 ## ##################################################
3
4 SUBDIRS = base parser capability solver source detail
5
6 ## ##################################################
7
8 include_HEADERS = NeedAType.h \
9         Arch.h          \
10         Capability.h    \
11         CapFactory.h    \
12         CapSet.h        \
13         Dependencies.h  \
14         Edition.h       \
15         Rel.h           \
16         ResObject.h     \
17         Resolvable.h    \
18         ResTraits.h     \
19         Package.h       \
20         Selection.h     \
21         Message.h       \
22         Script.h        \
23         Patch.h         \
24         Product.h       \
25         Changelog.h
26
27 ## ##################################################
28
29 lib_LTLIBRARIES =       lib@PACKAGE@.la
30
31 ## ##################################################
32
33 lib@PACKAGE@_la_SOURCES = \
34         Arch.cc         \
35         Capability.cc   \
36         CapFactory.cc   \
37         CapSet.cc       \
38         Dependencies.cc \
39         Edition.cc      \
40         Rel.cc          \
41         ResObject.cc    \
42         Resolvable.cc   \
43         ResTraits.cc    \
44         Package.cc      \
45         Selection.cc    \
46         Message.cc      \
47         Script.cc       \
48         Patch.cc        \
49         Product.cc
50
51 lib@PACKAGE@_la_LDFLAGS =       @LIB_VERSION_INFO@
52
53 lib@PACKAGE@_la_LIBADD =        base/lib@PACKAGE@_base.la       \
54                                 detail/lib@PACKAGE@_detail.la   \
55                                 capability/lib@PACKAGE@_capability.la   \
56                                 solver/lib@PACKAGE@_solver.la   \
57                                 parser/lib@PACKAGE@_parser.la   \
58                                 source/lib@PACKAGE@_source.la
59
60 ## ##################################################