mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-23 05:08:56 +00:00
29 lines
440 B
Makefile
29 lines
440 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/library \
|
|
-DSRCDIR="\"@abs_srcdir@\"" \
|
|
$(NULL)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/egg/libegg.la \
|
|
$(top_builddir)/library/libgsecret.la \
|
|
$(NULL)
|
|
|
|
TEST_PROGS = \
|
|
test-service \
|
|
test-session \
|
|
$(NULL)
|
|
|
|
check_PROGRAMS = \
|
|
$(TEST_PROGS)
|
|
|
|
noinst_PROGRAMS = \
|
|
$(NULL)
|
|
|
|
test: $(TEST_PROGS)
|
|
gtester -k --verbose $(TEST_PROGS)
|
|
|
|
all-local: $(check_PROGRAMS)
|
|
|
|
check-local: test |