blob: 070b6052bb019457e5f4a8dea230003505710a01 (
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
|
include $(top_srcdir)/utils/glib-tap.mk
PACKAGE_STRING=fe-common/core
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
$(GLIB_CFLAGS)
test_programs = test-formats
test_formats_CPPFLAGS = \
-I$(top_srcdir)/src/fe-common/core \
$(AM_CPPFLAGS)
test_formats_DEPENDENCIES = \
../../../src/core/libcore.a \
../../../src/lib-config/libirssi_config.a
test_formats_LDADD = \
../../../src/fe-common/core/libfe_common_core.a \
../../../src/core/libcore.a \
../../../src/lib-config/libirssi_config.a \
@GLIB_LIBS@ \
@OPENSSL_LIBS@
test_formats_SOURCES = \
test-formats.c
|