fix the closing session bug, even if next user authentication is failed.
[platform/core/system/tlm.git] / src / common / Makefile.am
1 include $(top_srcdir)/common.mk
2 SUBDIRS = dbus
3
4 lib_LTLIBRARIES = libtlm-common.la
5 BUILT_SOURCES =
6
7 libtlm_common_la_includedir = $(includedir)/tlm
8 libtlm_common_la_include_HEADERS = \
9         tlm-account-plugin.h \
10         tlm-auth-plugin.h \
11         $(NULL)
12
13 libtlm_common_la_SOURCES = \
14         $(BUILT_SOURCES) \
15         tlm-account-plugin.c \
16         tlm-auth-plugin.c \
17         tlm-log.h \
18         tlm-log.c \
19         tlm-error.h \
20         tlm-error.c \
21         tlm-config.h \
22         tlm-config.c \
23         tlm-config-general.h \
24         tlm-config-seat.h \
25         tlm-pipe-stream.c \
26         tlm-pipe-stream.h \
27         tlm-utils.h \
28         tlm-utils.c \
29         $(NULL)
30
31 libtlm_common_la_CFLAGS = \
32         -I$(abs_top_srcdir)/src \
33         -DG_LOG_DOMAIN=\"TLM_COMMON\" \
34         -DTLM_PLUGINS_DIR='"$(pluginsdir)"' \
35         -DTLM_SYSCONF_DIR='"$(sysconfdir)"' \
36         $(TLM_CFLAGS) \
37         $(NULL)
38
39 libtlm_common_la_LIBADD = \
40         $(TLM_LIBS) \
41         -lpam \
42         $(NULL)
43