1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
NULL =
noinst_LTLIBRARIES = \
libbackends.la \
$(NULL)
libbackends_la_CPPFLAGS = \
-DG_LOG_DOMAIN=\"gf-backends\" \
-DG_LOG_USE_STRUCTURED=1 \
-I$(top_srcdir) \
$(AM_CPPFLAGS) \
$(NULL)
libbackends_la_CFLAGS = \
$(BACKENDS_CFLAGS) \
$(WARN_CFLAGS) \
$(AM_CFLAGS) \
$(NULL)
libbackends_la_SOURCES = \
gf-backend-private.h \
gf-backend-x11-cm-private.h \
gf-backend-x11-cm.c \
gf-backend-x11-private.h \
gf-backend-x11.c \
gf-backend.c \
gf-backend.h \
gf-crtc-mode-info-private.h \
gf-crtc-mode-info.c \
gf-crtc-mode-private.h \
gf-crtc-mode.c \
gf-crtc-private.h \
gf-crtc-xrandr-private.h \
gf-crtc-xrandr.c \
gf-crtc.c \
gf-direction.h \
gf-display-config-shared.h \
gf-edid-parse.c \
gf-edid-private.h \
gf-gpu-private.h \
gf-gpu-xrandr-private.h \
gf-gpu-xrandr.c \
gf-gpu.c \
gf-logical-monitor-config-private.h \
gf-logical-monitor-config.c \
gf-logical-monitor-private.h \
gf-logical-monitor.c \
gf-monitor-config-manager-private.h \
gf-monitor-config-manager.c \
gf-monitor-config-private.h \
gf-monitor-config-store-private.h \
gf-monitor-config-store.c \
gf-monitor-config-utils.c \
gf-monitor-config-utils.h \
gf-monitor-config.c \
gf-monitor-manager-enums-private.h \
gf-monitor-manager-kms-private.h \
gf-monitor-manager-kms.c \
gf-monitor-manager-private.h \
gf-monitor-manager-types-private.h \
gf-monitor-manager-xrandr-private.h \
gf-monitor-manager-xrandr.c \
gf-monitor-manager.c \
gf-monitor-manager.h \
gf-monitor-normal-private.h \
gf-monitor-normal.c \
gf-monitor-private.h \
gf-monitor-spec-private.h \
gf-monitor-spec.c \
gf-monitor-tiled-private.h \
gf-monitor-tiled.c \
gf-monitor-transform.c \
gf-monitor-transform.h \
gf-monitor.c \
gf-monitors-config-private.h \
gf-monitors-config.c \
gf-orientation-manager-private.h \
gf-orientation-manager.c \
gf-output-info-private.h \
gf-output-info.c \
gf-output-private.h \
gf-output-xrandr-private.h \
gf-output-xrandr.c \
gf-output.c \
gf-rectangle-private.h \
gf-rectangle.c \
gf-rectangle.h \
gf-settings-private.h \
gf-settings.c \
gf-settings.h \
$(BUILT_SOURCES) \
$(NULL)
libbackends_la_LDFLAGS = \
$(WARN_LDFLAGS) \
$(AM_LDFLAGS) \
$(NULL)
libbackends_la_LIBADD = \
$(BACKENDS_LIBS) \
$(LIBM) \
$(NULL)
gf-dbus-display-config.h:
gf-dbus-display-config.c: org.gnome.Mutter.DisplayConfig.xml
$(AM_V_GEN) $(GDBUS_CODEGEN) \
--c-namespace GfDBus \
--generate-c-code gf-dbus-display-config \
--interface-prefix org.gnome.Mutter \
$(srcdir)/org.gnome.Mutter.DisplayConfig.xml
BUILT_SOURCES = \
gf-dbus-display-config.c \
gf-dbus-display-config.h \
$(NULL)
EXTRA_DIST = \
org.gnome.Mutter.DisplayConfig.xml \
$(NULL)
CLEANFILES = \
$(BUILT_SOURCES) \
$(NULL)
-include $(top_srcdir)/git.mk
|