diff options
author | Carl Worth <cworth@cworth.org> | 2005-08-01 13:33:47 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-08-01 13:33:47 +0000 |
commit | c525c684ca712c5c5acd5431ec061bfab364cef5 (patch) | |
tree | 1058f354f0d420bb8e66e2604776806e9bbcd198 /Makefile.am | |
parent | 480951827e567db89f88e71e7ba20f4fa4633c1b (diff) |
New public header file.
New function to reset all static data (eg. caches) to their initial state.
Fix check-valgrind target to depend on the 'all' target.
Add check for a new, proposed, XrmFinalize function.
Add cairo-debug.c.
Move the definition of CAIRO_BEGIN_DECLS to cairo-features.h so that it can be shared between public header files, and so that it doesn't clutter cairo.h
Implement reset_static_data in all modules as required.
Call cairo_debug_reset_static_data and FcFini so that we can have all tests be valgrind-clean with respect to memory leaks and still-reachable data.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c2a9965a..e375b1b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,6 +15,9 @@ EXTRA_DIST = \ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = cairo.pc +check-valgrind: all + $(MAKE) -C test check-valgrind + DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc # Some custom targets to make it easier to release things. |