mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
41e7cb387e
* Not yet tested, but compiles
28 lines
424 B
Makefile
28 lines
424 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-session \
|
|
$(NULL)
|
|
|
|
check_PROGRAMS = \
|
|
$(TEST_PROGS)
|
|
|
|
noinst_PROGRAMS = \
|
|
$(NULL)
|
|
|
|
test: $(TEST_PROGS)
|
|
gtester -k --verbose $(TEST_PROGS)
|
|
|
|
all-local: $(check_PROGRAMS)
|
|
|
|
check-local: test |