2009-09-16 16:43:58 +00:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
|
2008-01-25 19:48:26 +00:00
|
|
|
NULL =
|
|
|
|
|
2009-12-01 12:31:07 +00:00
|
|
|
SUBDIRS = build clutter tests doc po
|
2006-06-23 10:42:29 +00:00
|
|
|
|
2010-11-11 12:03:24 +00:00
|
|
|
# XXX - this is a massive hack to make autoreconf honour the ACLOCAL_FLAGS
|
|
|
|
# that jhbuild sets while still retaining build/autotools as the authoritative
|
|
|
|
# source for m4 macros
|
|
|
|
ACLOCAL_AMFLAGS = -I build/autotools ${ACLOCAL_FLAGS}
|
2009-02-17 14:56:35 +00:00
|
|
|
|
2010-09-13 10:30:30 +00:00
|
|
|
EXTRA_DIST = \
|
2009-11-18 15:21:09 +00:00
|
|
|
ChangeLog.pre-git-import \
|
|
|
|
$(NULL)
|
2006-06-23 10:42:29 +00:00
|
|
|
|
2007-06-27 11:56:41 +00:00
|
|
|
CLEANFILES = $(pcfiles)
|
2006-06-23 10:42:29 +00:00
|
|
|
|
2010-08-17 10:34:35 +00:00
|
|
|
DISTCLEANFILES =
|
2009-01-29 15:38:28 +00:00
|
|
|
|
2010-06-30 11:40:38 +00:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-maintainer-flags
|
2006-06-23 10:42:29 +00:00
|
|
|
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
2009-02-19 17:15:04 +00:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
aclocal.m4 \
|
|
|
|
config.guess \
|
|
|
|
config.h.in \
|
|
|
|
configure \
|
|
|
|
gtk-doc.make \
|
|
|
|
Makefile.in \
|
2008-01-25 19:48:26 +00:00
|
|
|
$(NULL)
|
2009-11-18 14:21:08 +00:00
|
|
|
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.changelog
|
2010-10-03 13:53:14 +00:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.release
|
2010-01-04 14:53:03 +00:00
|
|
|
|
2010-10-03 13:53:14 +00:00
|
|
|
# proxy rule for gcov
|
2010-01-04 14:53:03 +00:00
|
|
|
gcov:
|
|
|
|
@( cd clutter && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
2010-10-03 13:53:14 +00:00
|
|
|
|
|
|
|
# proxy rules for tests
|
|
|
|
test-report full-report:
|
|
|
|
$(MAKE) -C tests/conform $(@)
|
|
|
|
|
|
|
|
.PHONY: gcov test-report full-report
|