mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-27 22:10:11 +01:00
65 lines
1.4 KiB
Makefile
65 lines
1.4 KiB
Makefile
ACLOCAL_AMFLAGS = -I build
|
|
|
|
DIST_SUBDIRS = src boilerplate test perf doc util
|
|
SUBDIRS = src doc
|
|
# libpng is required for our test programs
|
|
if CAIRO_HAS_PNG_FUNCTIONS
|
|
SUBDIRS += boilerplate test perf
|
|
endif
|
|
|
|
configure: cairo-version.h
|
|
|
|
doc:
|
|
cd doc && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
test retest recheck: all
|
|
cd test && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
perf: all
|
|
cd perf && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
check-valgrind: all
|
|
cd test && $(MAKE) $(AM_MAKEFLAGS) check-valgrind
|
|
cd perf && $(MAKE) $(AM_MAKEFLAGS) check-valgrind
|
|
.PHONY: doc test retest recheck perf check-valgrind
|
|
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
BIBLIOGRAPHY \
|
|
BUGS \
|
|
CODING_STYLE \
|
|
COPYING \
|
|
COPYING-LGPL-2.1 \
|
|
COPYING-MPL-1.1 \
|
|
HACKING \
|
|
INSTALL \
|
|
Makefile.win32 \
|
|
NEWS \
|
|
PORTING_GUIDE \
|
|
README \
|
|
RELEASING \
|
|
autogen.sh \
|
|
cairo-version.h \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = config.cache
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autoscan.log \
|
|
$(srcdir)/build/compile \
|
|
$(srcdir)/build/config.guess \
|
|
$(srcdir)/build/config.sub \
|
|
$(srcdir)/build/depcomp \
|
|
$(srcdir)/build/install-sh \
|
|
$(srcdir)/build/ltmain.sh \
|
|
$(srcdir)/build/missing \
|
|
$(srcdir)/build/mkinstalldirs \
|
|
$(srcdir)/config.h.in \
|
|
$(srcdir)/configure.scan \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print`
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-gtk-doc \
|
|
--enable-test-surfaces
|
|
|
|
include $(srcdir)/build/Makefile.am.changelog
|
|
include $(srcdir)/build/Makefile.am.releasing
|
|
include $(srcdir)/build/Makefile.am.analysis
|