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