mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
23 lines
339 B
Makefile
23 lines
339 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
VALGRIND_CONTRIB = \
|
|
valgrind.h \
|
|
memcheck.h \
|
|
$(NULL)
|
|
|
|
SUPPRESSIONS = \
|
|
gcrypt.supp \
|
|
glib.supp \
|
|
pthread.supp \
|
|
unknown.supp \
|
|
$(NULL)
|
|
|
|
valgrind-suppressions: $(SUPPRESSIONS)
|
|
$(AM_V_GEN) cat $(SUPPRESSIONS) > $@
|
|
|
|
EXTRA_DIST = \
|
|
valgrind \
|
|
$(SUPPRESSIONS)
|
|
|
|
all-local: valgrind-suppressions
|