mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 20:58:52 +00:00
19 lines
287 B
Makefile
19 lines
287 B
Makefile
|
|
||
|
VALGRIND_CONTRIB = \
|
||
|
valgrind.h \
|
||
|
memcheck.h
|
||
|
|
||
|
SUPPRESSIONS = \
|
||
|
gcrypt.supp \
|
||
|
glib.supp \
|
||
|
pthread.supp \
|
||
|
unknown.supp
|
||
|
|
||
|
valgrind-built.supp: $(SUPPRESSIONS)
|
||
|
$(AM_V_GEN) cat $(SUPPRESSIONS) > $@
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
$(VALGRIND_CONTRIB) \
|
||
|
$(SUPPRESSIONS)
|
||
|
|
||
|
all-local: valgrind-built.supp
|