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