blob: 0f7fc28ceb4aae0df4f834a9c6a8b01782ece7e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
noinst_LTLIBRARIES = libtp-logger-tests.la
libtp_logger_tests_la_SOURCES = \
contacts-conn.c \
contacts-conn.h \
contact-list-manager.c \
contact-list-manager.h \
room-list-chan.c \
room-list-chan.h \
simple-account.c \
simple-account.h \
simple-account-manager.c \
simple-account-manager.h \
simple-conn.c \
simple-conn.h \
textchan-null.c \
textchan-null.h \
util.c \
util.h
check_c_sources = *.c
include $(top_srcdir)/tools/check-coding-style.mk
check-local: check-coding-style
AM_CFLAGS = \
$(ERROR_CFLAGS) \
$(TPL_CFLAGS)\
$(NULL)
libtp_logger_tests_la_LIBADD = $(TPL_LIBS)
|