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