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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
|
# Makefile.in generated by automake 1.17 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2024 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
am__rm_f = rm -f $(am__rm_f_notfound)
am__rm_rf = rm -rf $(am__rm_f_notfound)
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
subdir = backends
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_append_compile_flags.m4 \
$(top_srcdir)/m4/ax_append_flag.m4 \
$(top_srcdir)/m4/ax_append_link_flags.m4 \
$(top_srcdir)/m4/ax_check_compile_flag.m4 \
$(top_srcdir)/m4/ax_check_enable_debug.m4 \
$(top_srcdir)/m4/ax_check_link_flag.m4 \
$(top_srcdir)/m4/ax_compiler_flags.m4 \
$(top_srcdir)/m4/ax_compiler_flags_cflags.m4 \
$(top_srcdir)/m4/ax_compiler_flags_gir.m4 \
$(top_srcdir)/m4/ax_compiler_flags_ldflags.m4 \
$(top_srcdir)/m4/ax_is_release.m4 \
$(top_srcdir)/m4/ax_require_defined.m4 \
$(top_srcdir)/m4/build-to-host.m4 $(top_srcdir)/m4/gettext.m4 \
$(top_srcdir)/m4/gsettings.m4 \
$(top_srcdir)/m4/host-cpu-c-abi.m4 $(top_srcdir)/m4/iconv.m4 \
$(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \
$(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
$(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
am__DEPENDENCIES_1 =
libbackends_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
am__objects_1 =
am__objects_2 = libbackends_la-gf-dbus-display-config.lo \
$(am__objects_1)
am_libbackends_la_OBJECTS = libbackends_la-gf-backend-x11-cm.lo \
libbackends_la-gf-backend-x11.lo libbackends_la-gf-backend.lo \
libbackends_la-gf-crtc-mode-info.lo \
libbackends_la-gf-crtc-mode.lo \
libbackends_la-gf-crtc-xrandr.lo libbackends_la-gf-crtc.lo \
libbackends_la-gf-edid-parse.lo \
libbackends_la-gf-gpu-xrandr.lo libbackends_la-gf-gpu.lo \
libbackends_la-gf-logical-monitor-config.lo \
libbackends_la-gf-logical-monitor.lo \
libbackends_la-gf-monitor-config-manager.lo \
libbackends_la-gf-monitor-config-store.lo \
libbackends_la-gf-monitor-config-utils.lo \
libbackends_la-gf-monitor-config.lo \
libbackends_la-gf-monitor-manager-kms.lo \
libbackends_la-gf-monitor-manager-xrandr.lo \
libbackends_la-gf-monitor-manager.lo \
libbackends_la-gf-monitor-normal.lo \
libbackends_la-gf-monitor-spec.lo \
libbackends_la-gf-monitor-tiled.lo \
libbackends_la-gf-monitor-transform.lo \
libbackends_la-gf-monitor.lo \
libbackends_la-gf-monitors-config.lo \
libbackends_la-gf-orientation-manager.lo \
libbackends_la-gf-output-info.lo \
libbackends_la-gf-output-xrandr.lo libbackends_la-gf-output.lo \
libbackends_la-gf-rectangle.lo libbackends_la-gf-settings.lo \
$(am__objects_2) $(am__objects_1)
libbackends_la_OBJECTS = $(am_libbackends_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
libbackends_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(libbackends_la_CFLAGS) $(CFLAGS) $(libbackends_la_LDFLAGS) \
$(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = \
./$(DEPDIR)/libbackends_la-gf-backend-x11-cm.Plo \
./$(DEPDIR)/libbackends_la-gf-backend-x11.Plo \
./$(DEPDIR)/libbackends_la-gf-backend.Plo \
./$(DEPDIR)/libbackends_la-gf-crtc-mode-info.Plo \
./$(DEPDIR)/libbackends_la-gf-crtc-mode.Plo \
./$(DEPDIR)/libbackends_la-gf-crtc-xrandr.Plo \
./$(DEPDIR)/libbackends_la-gf-crtc.Plo \
./$(DEPDIR)/libbackends_la-gf-dbus-display-config.Plo \
./$(DEPDIR)/libbackends_la-gf-edid-parse.Plo \
./$(DEPDIR)/libbackends_la-gf-gpu-xrandr.Plo \
./$(DEPDIR)/libbackends_la-gf-gpu.Plo \
./$(DEPDIR)/libbackends_la-gf-logical-monitor-config.Plo \
./$(DEPDIR)/libbackends_la-gf-logical-monitor.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-config-manager.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-config-store.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-config-utils.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-config.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-manager.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-normal.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-spec.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-tiled.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor-transform.Plo \
./$(DEPDIR)/libbackends_la-gf-monitor.Plo \
./$(DEPDIR)/libbackends_la-gf-monitors-config.Plo \
./$(DEPDIR)/libbackends_la-gf-orientation-manager.Plo \
./$(DEPDIR)/libbackends_la-gf-output-info.Plo \
./$(DEPDIR)/libbackends_la-gf-output-xrandr.Plo \
./$(DEPDIR)/libbackends_la-gf-output.Plo \
./$(DEPDIR)/libbackends_la-gf-rectangle.Plo \
./$(DEPDIR)/libbackends_la-gf-settings.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
am__v_CC_1 =
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
am__v_CCLD_1 =
SOURCES = $(libbackends_la_SOURCES)
DIST_SOURCES = $(libbackends_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
am__DIST_COMMON = $(srcdir)/Makefile.in \
$(top_srcdir)/build-aux/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
A11Y_KEYBOARD_CFLAGS = @A11Y_KEYBOARD_CFLAGS@
A11Y_KEYBOARD_LIBS = @A11Y_KEYBOARD_LIBS@
ACLOCAL = @ACLOCAL@
ALSA_CFLAGS = @ALSA_CFLAGS@
ALSA_LIBS = @ALSA_LIBS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUDIO_DEVICE_SELECTION_CFLAGS = @AUDIO_DEVICE_SELECTION_CFLAGS@
AUDIO_DEVICE_SELECTION_LIBS = @AUDIO_DEVICE_SELECTION_LIBS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AUTOMOUNT_MANAGER_CFLAGS = @AUTOMOUNT_MANAGER_CFLAGS@
AUTOMOUNT_MANAGER_LIBS = @AUTOMOUNT_MANAGER_LIBS@
AWK = @AWK@
BACKENDS_CFLAGS = @BACKENDS_CFLAGS@
BACKENDS_LIBS = @BACKENDS_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLIPBOARD_CFLAGS = @CLIPBOARD_CFLAGS@
CLIPBOARD_LIBS = @CLIPBOARD_LIBS@
COMMON_CFLAGS = @COMMON_CFLAGS@
COMMON_LIBS = @COMMON_LIBS@
COMPIZCONFIG_CONFIG_DIR = @COMPIZCONFIG_CONFIG_DIR@
COMPIZCONFIG_UPGRADES_DIR = @COMPIZCONFIG_UPGRADES_DIR@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DESKTOP_CFLAGS = @DESKTOP_CFLAGS@
DESKTOP_LIBS = @DESKTOP_LIBS@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
END_SESSION_DIALOG_CFLAGS = @END_SESSION_DIALOG_CFLAGS@
END_SESSION_DIALOG_LIBS = @END_SESSION_DIALOG_LIBS@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FILECMD = @FILECMD@
GDBUS_CODEGEN = @GDBUS_CODEGEN@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@
GLIB_MKENUMS = @GLIB_MKENUMS@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GNOME_BLUETOOTH_CFLAGS = @GNOME_BLUETOOTH_CFLAGS@
GNOME_BLUETOOTH_LIBS = @GNOME_BLUETOOTH_LIBS@
GNOME_FLASHBACK_CFLAGS = @GNOME_FLASHBACK_CFLAGS@
GNOME_FLASHBACK_LIBS = @GNOME_FLASHBACK_LIBS@
GNOME_KEYBINDINGS_KEYSDIR = @GNOME_KEYBINDINGS_KEYSDIR@
GNOME_PANEL_LAYOUTS_DIR = @GNOME_PANEL_LAYOUTS_DIR@
GNOME_PANEL_MODULES_DIR = @GNOME_PANEL_MODULES_DIR@
GREP = @GREP@
GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@
GVC_CFLAGS = @GVC_CFLAGS@
GVC_LIBS = @GVC_LIBS@
IDLE_MONITOR_CFLAGS = @IDLE_MONITOR_CFLAGS@
IDLE_MONITOR_LIBS = @IDLE_MONITOR_LIBS@
INPUT_SETTINGS_CFLAGS = @INPUT_SETTINGS_CFLAGS@
INPUT_SETTINGS_LIBS = @INPUT_SETTINGS_LIBS@
INPUT_SOURCES_CFLAGS = @INPUT_SOURCES_CFLAGS@
INPUT_SOURCES_LIBS = @INPUT_SOURCES_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBM = @LIBM@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MEDIA_KEYS_CFLAGS = @MEDIA_KEYS_CFLAGS@
MEDIA_KEYS_LIBS = @MEDIA_KEYS_LIBS@
MKDIR_P = @MKDIR_P@
MSGFMT = @MSGFMT@
MSGMERGE = @MSGMERGE@
MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@
NM = @NM@
NMEDIT = @NMEDIT@
NOTIFICATIONS_CFLAGS = @NOTIFICATIONS_CFLAGS@
NOTIFICATIONS_LIBS = @NOTIFICATIONS_LIBS@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POLKIT_CFLAGS = @POLKIT_CFLAGS@
POLKIT_LIBS = @POLKIT_LIBS@
POSUB = @POSUB@
RANLIB = @RANLIB@
ROOT_BACKGROUND_CFLAGS = @ROOT_BACKGROUND_CFLAGS@
ROOT_BACKGROUND_LIBS = @ROOT_BACKGROUND_LIBS@
SCREENCAST_CFLAGS = @SCREENCAST_CFLAGS@
SCREENCAST_LIBS = @SCREENCAST_LIBS@
SCREENSAVER_CFLAGS = @SCREENSAVER_CFLAGS@
SCREENSAVER_LIBS = @SCREENSAVER_LIBS@
SCREENSHOT_CFLAGS = @SCREENSHOT_CFLAGS@
SCREENSHOT_LIBS = @SCREENSHOT_LIBS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SHELL_CFLAGS = @SHELL_CFLAGS@
SHELL_LIBS = @SHELL_LIBS@
STATUS_NOTIFIER_WATCHER_CFLAGS = @STATUS_NOTIFIER_WATCHER_CFLAGS@
STATUS_NOTIFIER_WATCHER_LIBS = @STATUS_NOTIFIER_WATCHER_LIBS@
STRIP = @STRIP@
SYSTEM_INDICATORS_CFLAGS = @SYSTEM_INDICATORS_CFLAGS@
SYSTEM_INDICATORS_LIBS = @SYSTEM_INDICATORS_LIBS@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
WARN_CFLAGS = @WARN_CFLAGS@
WARN_LDFLAGS = @WARN_LDFLAGS@
WARN_SCANNERFLAGS = @WARN_SCANNERFLAGS@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__rm_f_notfound = @am__rm_f_notfound@
am__tar = @am__tar@
am__untar = @am__untar@
am__xargs_n = @am__xargs_n@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
gsettingsschemadir = @gsettingsschemadir@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localedir_c = @localedir_c@
localedir_c_make = @localedir_c_make@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
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)
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)
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu backends/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu backends/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-$(am__rm_f) $(noinst_LTLIBRARIES)
@list='$(noinst_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
echo rm -f $${locs}; \
$(am__rm_f) $${locs}
libbackends.la: $(libbackends_la_OBJECTS) $(libbackends_la_DEPENDENCIES) $(EXTRA_libbackends_la_DEPENDENCIES)
$(AM_V_CCLD)$(libbackends_la_LINK) $(libbackends_la_OBJECTS) $(libbackends_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-backend-x11-cm.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-backend-x11.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-backend.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-crtc-mode-info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-crtc-mode.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-crtc-xrandr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-crtc.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-dbus-display-config.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-edid-parse.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-gpu-xrandr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-gpu.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-logical-monitor-config.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-logical-monitor.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-config-manager.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-config-store.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-config-utils.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-config.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-manager.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-normal.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-spec.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-tiled.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor-transform.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitor.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-monitors-config.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-orientation-manager.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-output-info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-output-xrandr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-output.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-rectangle.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbackends_la-gf-settings.Plo@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@: >>$@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
libbackends_la-gf-backend-x11-cm.lo: gf-backend-x11-cm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-backend-x11-cm.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-backend-x11-cm.Tpo -c -o libbackends_la-gf-backend-x11-cm.lo `test -f 'gf-backend-x11-cm.c' || echo '$(srcdir)/'`gf-backend-x11-cm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-backend-x11-cm.Tpo $(DEPDIR)/libbackends_la-gf-backend-x11-cm.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-backend-x11-cm.c' object='libbackends_la-gf-backend-x11-cm.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-backend-x11-cm.lo `test -f 'gf-backend-x11-cm.c' || echo '$(srcdir)/'`gf-backend-x11-cm.c
libbackends_la-gf-backend-x11.lo: gf-backend-x11.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-backend-x11.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-backend-x11.Tpo -c -o libbackends_la-gf-backend-x11.lo `test -f 'gf-backend-x11.c' || echo '$(srcdir)/'`gf-backend-x11.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-backend-x11.Tpo $(DEPDIR)/libbackends_la-gf-backend-x11.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-backend-x11.c' object='libbackends_la-gf-backend-x11.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-backend-x11.lo `test -f 'gf-backend-x11.c' || echo '$(srcdir)/'`gf-backend-x11.c
libbackends_la-gf-backend.lo: gf-backend.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-backend.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-backend.Tpo -c -o libbackends_la-gf-backend.lo `test -f 'gf-backend.c' || echo '$(srcdir)/'`gf-backend.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-backend.Tpo $(DEPDIR)/libbackends_la-gf-backend.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-backend.c' object='libbackends_la-gf-backend.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-backend.lo `test -f 'gf-backend.c' || echo '$(srcdir)/'`gf-backend.c
libbackends_la-gf-crtc-mode-info.lo: gf-crtc-mode-info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-crtc-mode-info.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-crtc-mode-info.Tpo -c -o libbackends_la-gf-crtc-mode-info.lo `test -f 'gf-crtc-mode-info.c' || echo '$(srcdir)/'`gf-crtc-mode-info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-crtc-mode-info.Tpo $(DEPDIR)/libbackends_la-gf-crtc-mode-info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-crtc-mode-info.c' object='libbackends_la-gf-crtc-mode-info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-crtc-mode-info.lo `test -f 'gf-crtc-mode-info.c' || echo '$(srcdir)/'`gf-crtc-mode-info.c
libbackends_la-gf-crtc-mode.lo: gf-crtc-mode.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-crtc-mode.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-crtc-mode.Tpo -c -o libbackends_la-gf-crtc-mode.lo `test -f 'gf-crtc-mode.c' || echo '$(srcdir)/'`gf-crtc-mode.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-crtc-mode.Tpo $(DEPDIR)/libbackends_la-gf-crtc-mode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-crtc-mode.c' object='libbackends_la-gf-crtc-mode.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-crtc-mode.lo `test -f 'gf-crtc-mode.c' || echo '$(srcdir)/'`gf-crtc-mode.c
libbackends_la-gf-crtc-xrandr.lo: gf-crtc-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-crtc-xrandr.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-crtc-xrandr.Tpo -c -o libbackends_la-gf-crtc-xrandr.lo `test -f 'gf-crtc-xrandr.c' || echo '$(srcdir)/'`gf-crtc-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-crtc-xrandr.Tpo $(DEPDIR)/libbackends_la-gf-crtc-xrandr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-crtc-xrandr.c' object='libbackends_la-gf-crtc-xrandr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-crtc-xrandr.lo `test -f 'gf-crtc-xrandr.c' || echo '$(srcdir)/'`gf-crtc-xrandr.c
libbackends_la-gf-crtc.lo: gf-crtc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-crtc.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-crtc.Tpo -c -o libbackends_la-gf-crtc.lo `test -f 'gf-crtc.c' || echo '$(srcdir)/'`gf-crtc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-crtc.Tpo $(DEPDIR)/libbackends_la-gf-crtc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-crtc.c' object='libbackends_la-gf-crtc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-crtc.lo `test -f 'gf-crtc.c' || echo '$(srcdir)/'`gf-crtc.c
libbackends_la-gf-edid-parse.lo: gf-edid-parse.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-edid-parse.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-edid-parse.Tpo -c -o libbackends_la-gf-edid-parse.lo `test -f 'gf-edid-parse.c' || echo '$(srcdir)/'`gf-edid-parse.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-edid-parse.Tpo $(DEPDIR)/libbackends_la-gf-edid-parse.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-edid-parse.c' object='libbackends_la-gf-edid-parse.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-edid-parse.lo `test -f 'gf-edid-parse.c' || echo '$(srcdir)/'`gf-edid-parse.c
libbackends_la-gf-gpu-xrandr.lo: gf-gpu-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-gpu-xrandr.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-gpu-xrandr.Tpo -c -o libbackends_la-gf-gpu-xrandr.lo `test -f 'gf-gpu-xrandr.c' || echo '$(srcdir)/'`gf-gpu-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-gpu-xrandr.Tpo $(DEPDIR)/libbackends_la-gf-gpu-xrandr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-gpu-xrandr.c' object='libbackends_la-gf-gpu-xrandr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-gpu-xrandr.lo `test -f 'gf-gpu-xrandr.c' || echo '$(srcdir)/'`gf-gpu-xrandr.c
libbackends_la-gf-gpu.lo: gf-gpu.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-gpu.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-gpu.Tpo -c -o libbackends_la-gf-gpu.lo `test -f 'gf-gpu.c' || echo '$(srcdir)/'`gf-gpu.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-gpu.Tpo $(DEPDIR)/libbackends_la-gf-gpu.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-gpu.c' object='libbackends_la-gf-gpu.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-gpu.lo `test -f 'gf-gpu.c' || echo '$(srcdir)/'`gf-gpu.c
libbackends_la-gf-logical-monitor-config.lo: gf-logical-monitor-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-logical-monitor-config.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-logical-monitor-config.Tpo -c -o libbackends_la-gf-logical-monitor-config.lo `test -f 'gf-logical-monitor-config.c' || echo '$(srcdir)/'`gf-logical-monitor-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-logical-monitor-config.Tpo $(DEPDIR)/libbackends_la-gf-logical-monitor-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-logical-monitor-config.c' object='libbackends_la-gf-logical-monitor-config.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-logical-monitor-config.lo `test -f 'gf-logical-monitor-config.c' || echo '$(srcdir)/'`gf-logical-monitor-config.c
libbackends_la-gf-logical-monitor.lo: gf-logical-monitor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-logical-monitor.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-logical-monitor.Tpo -c -o libbackends_la-gf-logical-monitor.lo `test -f 'gf-logical-monitor.c' || echo '$(srcdir)/'`gf-logical-monitor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-logical-monitor.Tpo $(DEPDIR)/libbackends_la-gf-logical-monitor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-logical-monitor.c' object='libbackends_la-gf-logical-monitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-logical-monitor.lo `test -f 'gf-logical-monitor.c' || echo '$(srcdir)/'`gf-logical-monitor.c
libbackends_la-gf-monitor-config-manager.lo: gf-monitor-config-manager.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-config-manager.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-config-manager.Tpo -c -o libbackends_la-gf-monitor-config-manager.lo `test -f 'gf-monitor-config-manager.c' || echo '$(srcdir)/'`gf-monitor-config-manager.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-config-manager.Tpo $(DEPDIR)/libbackends_la-gf-monitor-config-manager.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-config-manager.c' object='libbackends_la-gf-monitor-config-manager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-config-manager.lo `test -f 'gf-monitor-config-manager.c' || echo '$(srcdir)/'`gf-monitor-config-manager.c
libbackends_la-gf-monitor-config-store.lo: gf-monitor-config-store.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-config-store.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-config-store.Tpo -c -o libbackends_la-gf-monitor-config-store.lo `test -f 'gf-monitor-config-store.c' || echo '$(srcdir)/'`gf-monitor-config-store.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-config-store.Tpo $(DEPDIR)/libbackends_la-gf-monitor-config-store.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-config-store.c' object='libbackends_la-gf-monitor-config-store.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-config-store.lo `test -f 'gf-monitor-config-store.c' || echo '$(srcdir)/'`gf-monitor-config-store.c
libbackends_la-gf-monitor-config-utils.lo: gf-monitor-config-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-config-utils.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-config-utils.Tpo -c -o libbackends_la-gf-monitor-config-utils.lo `test -f 'gf-monitor-config-utils.c' || echo '$(srcdir)/'`gf-monitor-config-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-config-utils.Tpo $(DEPDIR)/libbackends_la-gf-monitor-config-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-config-utils.c' object='libbackends_la-gf-monitor-config-utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-config-utils.lo `test -f 'gf-monitor-config-utils.c' || echo '$(srcdir)/'`gf-monitor-config-utils.c
libbackends_la-gf-monitor-config.lo: gf-monitor-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-config.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-config.Tpo -c -o libbackends_la-gf-monitor-config.lo `test -f 'gf-monitor-config.c' || echo '$(srcdir)/'`gf-monitor-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-config.Tpo $(DEPDIR)/libbackends_la-gf-monitor-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-config.c' object='libbackends_la-gf-monitor-config.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-config.lo `test -f 'gf-monitor-config.c' || echo '$(srcdir)/'`gf-monitor-config.c
libbackends_la-gf-monitor-manager-kms.lo: gf-monitor-manager-kms.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-manager-kms.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Tpo -c -o libbackends_la-gf-monitor-manager-kms.lo `test -f 'gf-monitor-manager-kms.c' || echo '$(srcdir)/'`gf-monitor-manager-kms.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Tpo $(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-manager-kms.c' object='libbackends_la-gf-monitor-manager-kms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-manager-kms.lo `test -f 'gf-monitor-manager-kms.c' || echo '$(srcdir)/'`gf-monitor-manager-kms.c
libbackends_la-gf-monitor-manager-xrandr.lo: gf-monitor-manager-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-manager-xrandr.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Tpo -c -o libbackends_la-gf-monitor-manager-xrandr.lo `test -f 'gf-monitor-manager-xrandr.c' || echo '$(srcdir)/'`gf-monitor-manager-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Tpo $(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-manager-xrandr.c' object='libbackends_la-gf-monitor-manager-xrandr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-manager-xrandr.lo `test -f 'gf-monitor-manager-xrandr.c' || echo '$(srcdir)/'`gf-monitor-manager-xrandr.c
libbackends_la-gf-monitor-manager.lo: gf-monitor-manager.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-manager.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-manager.Tpo -c -o libbackends_la-gf-monitor-manager.lo `test -f 'gf-monitor-manager.c' || echo '$(srcdir)/'`gf-monitor-manager.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-manager.Tpo $(DEPDIR)/libbackends_la-gf-monitor-manager.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-manager.c' object='libbackends_la-gf-monitor-manager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-manager.lo `test -f 'gf-monitor-manager.c' || echo '$(srcdir)/'`gf-monitor-manager.c
libbackends_la-gf-monitor-normal.lo: gf-monitor-normal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-normal.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-normal.Tpo -c -o libbackends_la-gf-monitor-normal.lo `test -f 'gf-monitor-normal.c' || echo '$(srcdir)/'`gf-monitor-normal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-normal.Tpo $(DEPDIR)/libbackends_la-gf-monitor-normal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-normal.c' object='libbackends_la-gf-monitor-normal.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-normal.lo `test -f 'gf-monitor-normal.c' || echo '$(srcdir)/'`gf-monitor-normal.c
libbackends_la-gf-monitor-spec.lo: gf-monitor-spec.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-spec.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-spec.Tpo -c -o libbackends_la-gf-monitor-spec.lo `test -f 'gf-monitor-spec.c' || echo '$(srcdir)/'`gf-monitor-spec.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-spec.Tpo $(DEPDIR)/libbackends_la-gf-monitor-spec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-spec.c' object='libbackends_la-gf-monitor-spec.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-spec.lo `test -f 'gf-monitor-spec.c' || echo '$(srcdir)/'`gf-monitor-spec.c
libbackends_la-gf-monitor-tiled.lo: gf-monitor-tiled.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-tiled.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-tiled.Tpo -c -o libbackends_la-gf-monitor-tiled.lo `test -f 'gf-monitor-tiled.c' || echo '$(srcdir)/'`gf-monitor-tiled.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-tiled.Tpo $(DEPDIR)/libbackends_la-gf-monitor-tiled.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-tiled.c' object='libbackends_la-gf-monitor-tiled.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-tiled.lo `test -f 'gf-monitor-tiled.c' || echo '$(srcdir)/'`gf-monitor-tiled.c
libbackends_la-gf-monitor-transform.lo: gf-monitor-transform.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor-transform.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor-transform.Tpo -c -o libbackends_la-gf-monitor-transform.lo `test -f 'gf-monitor-transform.c' || echo '$(srcdir)/'`gf-monitor-transform.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor-transform.Tpo $(DEPDIR)/libbackends_la-gf-monitor-transform.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor-transform.c' object='libbackends_la-gf-monitor-transform.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor-transform.lo `test -f 'gf-monitor-transform.c' || echo '$(srcdir)/'`gf-monitor-transform.c
libbackends_la-gf-monitor.lo: gf-monitor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitor.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitor.Tpo -c -o libbackends_la-gf-monitor.lo `test -f 'gf-monitor.c' || echo '$(srcdir)/'`gf-monitor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitor.Tpo $(DEPDIR)/libbackends_la-gf-monitor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitor.c' object='libbackends_la-gf-monitor.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitor.lo `test -f 'gf-monitor.c' || echo '$(srcdir)/'`gf-monitor.c
libbackends_la-gf-monitors-config.lo: gf-monitors-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-monitors-config.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-monitors-config.Tpo -c -o libbackends_la-gf-monitors-config.lo `test -f 'gf-monitors-config.c' || echo '$(srcdir)/'`gf-monitors-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-monitors-config.Tpo $(DEPDIR)/libbackends_la-gf-monitors-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-monitors-config.c' object='libbackends_la-gf-monitors-config.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-monitors-config.lo `test -f 'gf-monitors-config.c' || echo '$(srcdir)/'`gf-monitors-config.c
libbackends_la-gf-orientation-manager.lo: gf-orientation-manager.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-orientation-manager.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-orientation-manager.Tpo -c -o libbackends_la-gf-orientation-manager.lo `test -f 'gf-orientation-manager.c' || echo '$(srcdir)/'`gf-orientation-manager.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-orientation-manager.Tpo $(DEPDIR)/libbackends_la-gf-orientation-manager.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-orientation-manager.c' object='libbackends_la-gf-orientation-manager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-orientation-manager.lo `test -f 'gf-orientation-manager.c' || echo '$(srcdir)/'`gf-orientation-manager.c
libbackends_la-gf-output-info.lo: gf-output-info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-output-info.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-output-info.Tpo -c -o libbackends_la-gf-output-info.lo `test -f 'gf-output-info.c' || echo '$(srcdir)/'`gf-output-info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-output-info.Tpo $(DEPDIR)/libbackends_la-gf-output-info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-output-info.c' object='libbackends_la-gf-output-info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-output-info.lo `test -f 'gf-output-info.c' || echo '$(srcdir)/'`gf-output-info.c
libbackends_la-gf-output-xrandr.lo: gf-output-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-output-xrandr.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-output-xrandr.Tpo -c -o libbackends_la-gf-output-xrandr.lo `test -f 'gf-output-xrandr.c' || echo '$(srcdir)/'`gf-output-xrandr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-output-xrandr.Tpo $(DEPDIR)/libbackends_la-gf-output-xrandr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-output-xrandr.c' object='libbackends_la-gf-output-xrandr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-output-xrandr.lo `test -f 'gf-output-xrandr.c' || echo '$(srcdir)/'`gf-output-xrandr.c
libbackends_la-gf-output.lo: gf-output.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-output.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-output.Tpo -c -o libbackends_la-gf-output.lo `test -f 'gf-output.c' || echo '$(srcdir)/'`gf-output.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-output.Tpo $(DEPDIR)/libbackends_la-gf-output.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-output.c' object='libbackends_la-gf-output.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-output.lo `test -f 'gf-output.c' || echo '$(srcdir)/'`gf-output.c
libbackends_la-gf-rectangle.lo: gf-rectangle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-rectangle.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-rectangle.Tpo -c -o libbackends_la-gf-rectangle.lo `test -f 'gf-rectangle.c' || echo '$(srcdir)/'`gf-rectangle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-rectangle.Tpo $(DEPDIR)/libbackends_la-gf-rectangle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-rectangle.c' object='libbackends_la-gf-rectangle.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-rectangle.lo `test -f 'gf-rectangle.c' || echo '$(srcdir)/'`gf-rectangle.c
libbackends_la-gf-settings.lo: gf-settings.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-settings.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-settings.Tpo -c -o libbackends_la-gf-settings.lo `test -f 'gf-settings.c' || echo '$(srcdir)/'`gf-settings.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-settings.Tpo $(DEPDIR)/libbackends_la-gf-settings.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-settings.c' object='libbackends_la-gf-settings.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-settings.lo `test -f 'gf-settings.c' || echo '$(srcdir)/'`gf-settings.c
libbackends_la-gf-dbus-display-config.lo: gf-dbus-display-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -MT libbackends_la-gf-dbus-display-config.lo -MD -MP -MF $(DEPDIR)/libbackends_la-gf-dbus-display-config.Tpo -c -o libbackends_la-gf-dbus-display-config.lo `test -f 'gf-dbus-display-config.c' || echo '$(srcdir)/'`gf-dbus-display-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libbackends_la-gf-dbus-display-config.Tpo $(DEPDIR)/libbackends_la-gf-dbus-display-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gf-dbus-display-config.c' object='libbackends_la-gf-dbus-display-config.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libbackends_la_CPPFLAGS) $(CPPFLAGS) $(libbackends_la_CFLAGS) $(CFLAGS) -c -o libbackends_la-gf-dbus-display-config.lo `test -f 'gf-dbus-display-config.c' || echo '$(srcdir)/'`gf-dbus-display-config.c
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LTLIBRARIES)
installdirs:
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
-$(am__rm_f) $(CLEANFILES)
distclean-generic:
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-$(am__rm_f) $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
-rm -f ./$(DEPDIR)/libbackends_la-gf-backend-x11-cm.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-backend-x11.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-backend.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc-mode-info.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc-mode.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-dbus-display-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-edid-parse.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-gpu-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-gpu.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-logical-monitor-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-logical-monitor.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config-manager.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config-store.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config-utils.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-manager.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-normal.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-spec.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-tiled.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-transform.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitors-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-orientation-manager.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-output-info.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-output-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-output.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-rectangle.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-settings.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am:
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f ./$(DEPDIR)/libbackends_la-gf-backend-x11-cm.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-backend-x11.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-backend.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc-mode-info.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc-mode.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-crtc.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-dbus-display-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-edid-parse.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-gpu-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-gpu.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-logical-monitor-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-logical-monitor.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config-manager.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config-store.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config-utils.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-manager-kms.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-manager-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-manager.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-normal.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-spec.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-tiled.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor-transform.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitor.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-monitors-config.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-orientation-manager.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-output-info.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-output-xrandr.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-output.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-rectangle.Plo
-rm -f ./$(DEPDIR)/libbackends_la-gf-settings.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am:
.MAKE: all check install install-am install-exec install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-generic clean-libtool clean-noinstLTLIBRARIES \
cscopelist-am ctags ctags-am distclean distclean-compile \
distclean-generic distclean-libtool distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-data install-data-am install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-man install-pdf \
install-pdf-am install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am
.PRECIOUS: Makefile
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
-include $(top_srcdir)/git.mk
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
# Tell GNU make to disable its built-in pattern rules.
%:: %,v
%:: RCS/%,v
%:: RCS/%
%:: s.%
%:: SCCS/s.%
|