added special exception class for aborting installation (#154936)
[platform/upstream/libzypp.git] / zypp / target / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 ## ##################################################
3
4 SUBDIRS = hal rpm store
5
6 INCLUDES = -DZYPP_BASE_LOGGER_LOGGROUP=\"target\"
7
8 ## ##################################################
9
10 targetincludedir = $(pkgincludedir)/target
11
12 targetinclude_HEADERS =                 \
13         TargetImpl.h                    \
14         TargetCallbackReceiver.h        \
15         TargetException.h
16
17 ## ##################################################
18
19 noinst_LTLIBRARIES =    lib@PACKAGE@_target.la
20
21 ## ##################################################
22
23 lib@PACKAGE@_target_la_SOURCES =        \
24         TargetImpl.cc                   \
25         TargetCallbackReceiver.cc       \
26         TargetException.cc
27
28 lib@PACKAGE@_target_la_LDFLAGS = @LIBZYPP_VERSION_INFO@
29
30 lib@PACKAGE@_target_la_LIBADD = \
31         rpm/lib@PACKAGE@_target_rpm.la  \
32         hal/lib@PACKAGE@_target_hal.la \
33         store/lib@PACKAGE@_target_store.la
34
35 ## ##################################################