mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
4ebc55f2b3
In order to minimize the amount of breakage, while at the same time making it easier to make backward incompatible changes needed to continue turning libmutter into a capable Wayland compositor, make the libmutter and friends (libmutter-clutter, libmutter-cogl*) parallel installable by adding a version number to the name. This changes various filenames, for example what previously was libmutter.so is now libmutter-0.so (assuming the version for now is 0), and libmutter-clutter-1.0.so is now libmutter-clutter-0.so. The pkg-config filenames and GObject introspection has been renamed to reflect this as well. This enables a downstream compositor rely on a specific version of the libmutter API, while gracefully handling API/ABI changes by having to update to the new version at their own pace. https://bugzilla.gnome.org/show_bug.cgi?id=777317
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
check_PROGRAMS = \
|
|
test-picking \
|
|
test-text-perf \
|
|
test-state \
|
|
test-state-interactive \
|
|
test-state-hidden \
|
|
test-state-mini \
|
|
test-state-pick
|
|
|
|
common_ldadd = $(top_builddir)/clutter/libmutter-clutter-@LIBMUTTER_API_VERSION@.la
|
|
|
|
LDADD = $(common_ldadd) $(CLUTTER_LIBS) $(LIBM)
|
|
|
|
AM_CFLAGS = $(CLUTTER_CFLAGS)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
|
-DCOGL_DISABLE_DEPRECATION_WARNINGS \
|
|
-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
|
|
-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\" \
|
|
-I$(top_srcdir)/../cogl \
|
|
-I$(top_builddir)/../cogl \
|
|
-I$(top_builddir)/../cogl/cogl \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_builddir)/clutter
|
|
|
|
perf-report: check
|
|
|
|
check:
|
|
for a in $(noinst_PROGRAMS);do ./$$a;done;true
|
|
|
|
test_picking_SOURCES = test-picking.c
|
|
test_text_perf_SOURCES = test-text-perf.c
|
|
test_state_SOURCES = test-state.c
|
|
test_state_hidden_SOURCES = test-state-hidden.c
|
|
test_state_pick_SOURCES = test-state-pick.c
|
|
test_state_interactive_SOURCES = test-state-interactive.c
|
|
test_state_mini_SOURCES = test-state-mini.c
|
|
|
|
EXTRA_DIST = Makefile-retrospect Makefile-tests create-report.rb test-common.h
|