mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
f00e84606c
* configure.ac: Use pkg-config to check for X. Really Check for GL libs. Make gtk binding optional. Cleanup a little. * Makefile.am: * gtk/Makefile.am: Make gtk binding optional * clutter/clutter-element.c: Cleanup a little, notify on size change. * clutter/clutter-texture.c: Lots of cleanups. Add waste prop. Add filter quality prop. * clutter/clutter-clone-texture.c: Make object construction simpler to work better with bindings. * clutter/clutter-stage.c: * clutter/clutter-timeline.c: Minor reformating, cleanups. * examples/test-text.c: (main): Random experimentation
25 lines
582 B
Makefile
25 lines
582 B
Makefile
SUBDIRS=clutter bindings doc examples
|
|
|
|
if ENABLE_GTK
|
|
SUBDIRS += gtk
|
|
endif
|
|
|
|
pcfiles = clutter-@CLUTTER_MAJORMINOR@.pc
|
|
|
|
%-@CLUTTER_MAJORMINOR@.pc: %.pc
|
|
cp $< $@
|
|
|
|
pkgconfig_DATA = $(pcfiles)
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
EXTRA_DIST = clutter.pc.in
|
|
|
|
CLEANFILES = $(pcfiles)
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
MAINTAINERCLEANFILES = aclocal.m4 compile config.guess config.sub \
|
|
configure depcomp install-sh ltmain.sh \
|
|
Makefile.in missing config.h.in
|