transition: Use current values if no interval is defined
[profile/ivi/clutter.git] / Makefile.am
1 include $(top_srcdir)/build/autotools/Makefile.am.silent
2
3 NULL =
4
5 SUBDIRS = clutter doc po build
6
7 if BUILD_TESTS
8 SUBDIRS += tests
9 endif
10
11 if BUILD_EXAMPLES
12 SUBDIRS += examples
13 endif
14
15 DIST_SUBDIRS = clutter tests examples doc po build
16
17 # XXX - this is a massive hack to make autoreconf honour the ACLOCAL_FLAGS
18 # that jhbuild sets while still retaining build/autotools as the authoritative
19 # source for m4 macros
20 ACLOCAL_AMFLAGS = -I build/autotools ${ACLOCAL_FLAGS}
21
22 EXTRA_DIST = \
23         ChangeLog.pre-git-import        \
24         README.in                       \
25         README                          \
26         config.h.win32          \
27         config.h.win32.in       \
28         $(NULL)
29
30 CLEANFILES = $(pcfiles)
31
32 DISTCLEANFILES =
33
34 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-maintainer-flags --enable-docs
35
36 # .release requires .changelog rules
37 include $(top_srcdir)/build/autotools/Makefile.am.changelog
38 include $(top_srcdir)/build/autotools/Makefile.am.release
39
40 # proxy rule for gcov
41 gcov:
42         @( cd clutter && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $$?
43
44 # proxy rules for tests
45 test-report full-report:
46         $(MAKE) -C tests/conform $(@)
47
48 perf-report:
49         $(MAKE) -C tests/performance $(@)
50
51 .PHONY: gcov test-report full-report perf-report