mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-01-11 22:48:52 +00:00
46137f865b
* Fixes the namespacing capitalization issues run into with gobject-introspection and glib code tools
54 lines
961 B
Makefile
54 lines
961 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/library \
|
|
-DSRCDIR="\"@abs_srcdir@\"" \
|
|
$(NULL)
|
|
|
|
noinst_LTLIBRARIES = libmock_service.la
|
|
|
|
libmock_service_la_SOURCES = \
|
|
mock-service.c mock-service.h \
|
|
$(NULL)
|
|
|
|
libmock_service_la_CFLAGS = \
|
|
$(LIBGCRYPT_CFLAGS)
|
|
|
|
libmock_service_la_LIBADD = \
|
|
$(top_builddir)/egg/libegg.la \
|
|
$(top_builddir)/library/libsecret.la \
|
|
$(LIBGCRYPT_LIBS)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/egg/libegg.la \
|
|
$(top_builddir)/library/libsecret.la \
|
|
$(top_builddir)/library/tests/libmock_service.la \
|
|
$(NULL)
|
|
|
|
TEST_PROGS = \
|
|
test-value \
|
|
test-prompt \
|
|
test-service \
|
|
test-session \
|
|
test-methods \
|
|
test-password \
|
|
test-item \
|
|
test-collection \
|
|
$(NULL)
|
|
|
|
check_PROGRAMS = \
|
|
$(TEST_PROGS)
|
|
|
|
noinst_PROGRAMS = \
|
|
$(NULL)
|
|
|
|
test: $(TEST_PROGS)
|
|
gtester --verbose -m $(TEST_MODE) --g-fatal-warnings $(TEST_PROGS)
|
|
|
|
all-local: $(check_PROGRAMS)
|
|
|
|
check-local: test
|
|
|
|
check-memory: perform-memcheck
|
|
|
|
.PHONY: check-memory |