- added helper struct NVRA
[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 media url
5
6 ## ##################################################
7
8 include_HEADERS = NeedAType.h \
9         Arch.h          \
10         ByteCount.h     \
11         Capability.h    \
12         CapFactory.h    \
13         CapSet.h        \
14         CountryCode.h   \
15         Date.h          \
16         Dependencies.h  \
17         Edition.h       \
18         LanguageCode.h  \
19         Locale.h        \
20         NVRA.h          \
21         Rel.h           \
22         ResObject.h     \
23         Resolvable.h    \
24         ResTraits.h     \
25         Package.h       \
26         Pathname.h      \
27         Selection.h     \
28         Message.h       \
29         Script.h        \
30         Patch.h         \
31         Product.h       \
32         Changelog.h     \
33         ExternalProgram.h\
34         Pathname.h      \
35         PathInfo.h      \
36         Digest.h        \
37         Url.h           \
38         TmpPath.h       \
39         KVMap.h         \
40         Callback.h
41
42 ## ##################################################
43
44 lib_LTLIBRARIES =       lib@PACKAGE@.la
45
46 ## ##################################################
47
48 lib@PACKAGE@_la_SOURCES = \
49         Arch.cc         \
50         ByteCount.cc    \
51         Capability.cc   \
52         CapFactory.cc   \
53         CapSet.cc       \
54         CountryCode.cc  \
55         Date.cc         \
56         Dependencies.cc \
57         Edition.cc      \
58         LanguageCode.cc \
59         Locale.cc       \
60         NVRA.cc         \
61         Rel.cc          \
62         ResObject.cc    \
63         Resolvable.cc   \
64         ResTraits.cc    \
65         Package.cc      \
66         Pathname.cc     \
67         Selection.cc    \
68         Message.cc      \
69         Script.cc       \
70         Patch.cc        \
71         Product.cc      \
72         Changelog.cc    \
73         ExternalProgram.cc\
74         PathInfo.cc     \
75         Digest.cc       \
76         Url.cc          \
77         TmpPath.cc
78
79 lib@PACKAGE@_la_LDFLAGS =       @LIB_VERSION_INFO@
80
81 lib@PACKAGE@_la_LIBADD =        base/lib@PACKAGE@_base.la       \
82                                 detail/lib@PACKAGE@_detail.la   \
83                                 capability/lib@PACKAGE@_capability.la   \
84                                 solver/lib@PACKAGE@_solver.la   \
85                                 parser/lib@PACKAGE@_parser.la   \
86                                 source/lib@PACKAGE@_source.la   \
87                                 media/lib@PACKAGE@_media.la     \
88                                 url/lib@PACKAGE@_url.la \
89                                 -lutil
90
91 ## ##################################################