2009-09-16 12:43:58 -04:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
|
2008-01-25 14:48:26 -05:00
|
|
|
NULL =
|
|
|
|
|
2009-12-01 07:31:07 -05:00
|
|
|
SUBDIRS = build clutter tests doc po
|
2006-06-23 06:42:29 -04:00
|
|
|
|
2010-11-11 07:03:24 -05: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 09:56:35 -05:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
EXTRA_DIST = \
|
2009-11-18 10:21:09 -05:00
|
|
|
ChangeLog.pre-git-import \
|
2011-02-14 12:34:15 -05:00
|
|
|
README.in \
|
2009-11-18 10:21:09 -05:00
|
|
|
$(NULL)
|
2006-06-23 06:42:29 -04:00
|
|
|
|
2007-06-27 07:56:41 -04:00
|
|
|
CLEANFILES = $(pcfiles)
|
2006-06-23 06:42:29 -04:00
|
|
|
|
2010-08-17 06:34:35 -04:00
|
|
|
DISTCLEANFILES =
|
2009-01-29 10:38:28 -05:00
|
|
|
|
2011-02-01 09:38:08 -05:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-maintainer-flags --enable-docs
|
2006-06-23 06:42:29 -04:00
|
|
|
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
2009-02-19 12:15:04 -05:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
aclocal.m4 \
|
|
|
|
config.guess \
|
|
|
|
config.h.in \
|
|
|
|
configure \
|
|
|
|
gtk-doc.make \
|
|
|
|
Makefile.in \
|
2008-01-25 14:48:26 -05:00
|
|
|
$(NULL)
|
2009-11-18 09:21:08 -05:00
|
|
|
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.changelog
|
2010-10-03 09:53:14 -04:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.release
|
2010-01-04 09:53:03 -05:00
|
|
|
|
2010-10-03 09:53:14 -04:00
|
|
|
# proxy rule for gcov
|
2010-01-04 09:53:03 -05:00
|
|
|
gcov:
|
|
|
|
@( cd clutter && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
|
2010-10-03 09:53:14 -04:00
|
|
|
|
|
|
|
# proxy rules for tests
|
|
|
|
test-report full-report:
|
|
|
|
$(MAKE) -C tests/conform $(@)
|
|
|
|
|
|
|
|
.PHONY: gcov test-report full-report
|