97a23161f6
* Makefile.am: Use variables, instead of substitutions. * clutter/clutter-private.h: * clutter/clutter-main.h: Make clutter_do_event() public again, as we need it in clutter-gtk. * configure.ac: * clutter/x11/Makefile.am: * clutter/x11/clutter-x11.pc.in: Add a clutter-x11 pkg-config file for clutter-gtk, as it depends on the X11 backend API, as implemented by the GLX and EGLX backends. * clutter/x11/clutter-event-x11.c (event_translate): Do not propagate DestroyNotify events if the stage doesn't own the window. * tests/test-scale.c (main): Set values different from the default.
32 lines
1004 B
Makefile
32 lines
1004 B
Makefile
SUBDIRS = clutter tests doc
|
|
|
|
pcfiles = clutter-$(CLUTTER_FLAVOUR)-$(CLUTTER_API_VERSION).pc
|
|
|
|
clutter-$(CLUTTER_FLAVOUR)-$(CLUTTER_API_VERSION).pc: clutter.pc
|
|
cp $< $@
|
|
|
|
pkgconfig_DATA = $(pcfiles)
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
DEFAULT_FLAVOUR = @CLUTTER_FLAVOUR@
|
|
install-data-hook:
|
|
(cd $(DESTDIR)$(pkgconfigdir) && \
|
|
test -f clutter-$(DEFAULT_FLAVOUR)-@CLUTTER_MAJORMINOR@.pc && \
|
|
rm -f clutter-@CLUTTER_MAJORMINOR@.pc && \
|
|
cp -f clutter-$(DEFAULT_FLAVOUR)-@CLUTTER_MAJORMINOR@.pc clutter-@CLUTTER_MAJORMINOR@.pc)
|
|
|
|
uninstall-local:
|
|
rm -f $(DESTDIR)$(pkgconfigdir)/clutter-@CLUTTER_MAJORMINOR@.pc
|
|
|
|
|
|
EXTRA_DIST = clutter.pc.in HACKING
|
|
|
|
CLEANFILES = $(pcfiles)
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-maintainer-flags
|
|
|
|
# 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
|