/
githubmirror
/
authselect
Обзор
Документация
Войти
/
githubmirror
/
authselect
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.0.3
src/tests/Makefile.am
33 строки
859 B
Pavel Březina
lib: refuse to activate profile if unsupported feature was selected
23 ноя 2018, 18:59
23 ноя 2018, 18:59
a0ac2ae
Код
Авторство
О чём код?
# Linking tests with sources from other directories creates a problem for # make distclean, which recursively removes dependencies. When it tries to # remove a dependency that was already removed as part of cleaning up # other directory, it fails. Disabling dependency for tests only is a # fine workaround. AUTOMAKE_OPTIONS = no-dependencies AM_CFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ $(NULL) noinst_HEADERS = \ test_common.h \ $(NULL) TESTS = \ test_util_string_array \ $(NULL) check_PROGRAMS = $(TESTS) test_util_string_array_SOURCES = \ test_util_string_array.c \ ../lib/util/string_array.c \ ../lib/util/string.c \ $(NULL) test_util_string_array_CFLAGS = \ $(AM_CFLAGS) test_util_string_array_LDADD = \ $(CMOCKA_LIBS) \ $(top_builddir)/src/common/libcommon.la \ $(NULL)