mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
29 lines
595 B
Makefile
29 lines
595 B
Makefile
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
|