blob: d9fcde80a9234a5fc4c360caf8ac0ad42b65a468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
if !ZEBRA
PYTEST_IGNORE += --ignore=zebra/
endif
ZEBRA_TEST_LDADD = zebra/label_manager.o $(ALL_TESTS_LDADD)
if ZEBRA
check_PROGRAMS += tests/zebra/test_lm_plugin
endif
tests_zebra_test_lm_plugin_CFLAGS = $(TESTS_CFLAGS)
tests_zebra_test_lm_plugin_CPPFLAGS = $(TESTS_CPPFLAGS)
tests_zebra_test_lm_plugin_LDADD = $(ZEBRA_TEST_LDADD)
tests_zebra_test_lm_plugin_SOURCES = tests/zebra/test_lm_plugin.c
EXTRA_DIST += \
tests/zebra/test_lm_plugin.py \
tests/zebra/test_lm_plugin.refout \
# end
|