forked from enlightenment/edi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
876 B
33 lines
876 B
MAINTAINERCLEANFILES = Makefile.in |
|
CLEANFILES = check-results.xml |
|
|
|
if EFL_HAVE_TESTS |
|
|
|
check_PROGRAMS = edi_suite |
|
efl_cflags_safe = '@EFL_CFLAGS@' |
|
clang_include = '$(CLANG_INCLUDE)' |
|
|
|
edi_suite_SOURCES = \ |
|
edi_test_path.c \ |
|
edi_test_content_provider.c \ |
|
edi_test_language_provider.c \ |
|
edi_test_language_provider_c.c \ |
|
edi_suite.c |
|
|
|
edi_suite_CPPFLAGS = -I$(top_builddir)/src/lib/ -I$(top_builddir)/src/bin/ \ |
|
-I$(top_srcdir)/src/lib \ |
|
-I$(top_srcdir)/src/bin \ |
|
-DPACKAGE_TESTS_DIR=\"`pwd`/$(top_srcdir)/src/tests/\" \ |
|
-DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/src/tests/\" \ |
|
-DEFL_BETA_API_SUPPORT \ |
|
-DEFL_CFLAGS=\"$(efl_cflags_safe)\" \ |
|
-DCLANG_INCLUDES=\"$(clang_include)\" \ |
|
@EFL_CFLAGS@ \ |
|
@CHECK_CFLAGS@ |
|
|
|
edi_suite_LDADD = @EFL_LIBS@ @CHECK_LIBS@ $(top_builddir)/src/lib/libedi.la |
|
edi_suite_DEPENDENCIES = $(top_builddir)/src/lib/libedi.la |
|
|
|
endif |
|
|
|
EXTRA_DIST = edi_suite.h
|
|
|