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 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
|
# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2018 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))
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@
@X11_TESTS_TRUE@am__append_1 = test-pixmap.c
@PIXBUF_TESTS_TRUE@am__append_2 = \
@PIXBUF_TESTS_TRUE@ test-image.c
check_PROGRAMS = test-interactive$(EXEEXT)
subdir = tests/interactive
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = \
$(top_srcdir)/build/autotools/as-compiler-flag.m4 \
$(top_srcdir)/build/autotools/glibtests.m4 \
$(top_srcdir)/build/autotools/introspection.m4 \
$(top_srcdir)/build/autotools/libtool.m4 \
$(top_srcdir)/build/autotools/ltoptions.m4 \
$(top_srcdir)/build/autotools/ltsugar.m4 \
$(top_srcdir)/build/autotools/ltversion.m4 \
$(top_srcdir)/build/autotools/lt~obsolete.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)/clutter/clutter-build-config.h
CONFIG_CLEAN_FILES = wrapper.sh
CONFIG_CLEAN_VPATH_FILES =
am__test_interactive_SOURCES_DIST = test-main.c test-texture-slicing.c \
test-texture-async.c test-texture-material.c test-events.c \
test-scale.c test-actors.c test-shader-effects.c test-script.c \
test-grab.c test-cogl-shader-arbfp.c test-cogl-shader-glsl.c \
test-animator.c test-state.c test-state-animator.c test-fbo.c \
test-multistage.c test-cogl-tex-tile.c test-cogl-tex-convert.c \
test-cogl-tex-foreign.c test-cogl-offscreen.c \
test-cogl-tex-polygon.c test-cogl-multitexture.c \
test-stage-read-pixels.c test-paint-wrapper.c \
test-texture-quality.c test-layout.c test-animation.c \
test-easing.c test-binding-pool.c test-text.c \
test-text-field.c test-cairo-clock.c test-cairo-flowers.c \
test-cogl-vertex-buffer.c test-stage-sizing.c test-scrolling.c \
test-swipe-action.c test-cogl-point-sprites.c \
test-table-layout.c test-path-constraint.c test-state-script.c \
test-devices.c test-content.c test-keyframe-transition.c \
test-bind-constraint.c test-touch-events.c test-rotate-zoom.c \
test-pixmap.c test-image.c
@X11_TESTS_TRUE@am__objects_1 = \
@X11_TESTS_TRUE@ test_interactive-test-pixmap.$(OBJEXT)
@PIXBUF_TESTS_TRUE@am__objects_2 = \
@PIXBUF_TESTS_TRUE@ test_interactive-test-image.$(OBJEXT)
am__objects_3 = test_interactive-test-texture-slicing.$(OBJEXT) \
test_interactive-test-texture-async.$(OBJEXT) \
test_interactive-test-texture-material.$(OBJEXT) \
test_interactive-test-events.$(OBJEXT) \
test_interactive-test-scale.$(OBJEXT) \
test_interactive-test-actors.$(OBJEXT) \
test_interactive-test-shader-effects.$(OBJEXT) \
test_interactive-test-script.$(OBJEXT) \
test_interactive-test-grab.$(OBJEXT) \
test_interactive-test-cogl-shader-arbfp.$(OBJEXT) \
test_interactive-test-cogl-shader-glsl.$(OBJEXT) \
test_interactive-test-animator.$(OBJEXT) \
test_interactive-test-state.$(OBJEXT) \
test_interactive-test-state-animator.$(OBJEXT) \
test_interactive-test-fbo.$(OBJEXT) \
test_interactive-test-multistage.$(OBJEXT) \
test_interactive-test-cogl-tex-tile.$(OBJEXT) \
test_interactive-test-cogl-tex-convert.$(OBJEXT) \
test_interactive-test-cogl-tex-foreign.$(OBJEXT) \
test_interactive-test-cogl-offscreen.$(OBJEXT) \
test_interactive-test-cogl-tex-polygon.$(OBJEXT) \
test_interactive-test-cogl-multitexture.$(OBJEXT) \
test_interactive-test-stage-read-pixels.$(OBJEXT) \
test_interactive-test-paint-wrapper.$(OBJEXT) \
test_interactive-test-texture-quality.$(OBJEXT) \
test_interactive-test-layout.$(OBJEXT) \
test_interactive-test-animation.$(OBJEXT) \
test_interactive-test-easing.$(OBJEXT) \
test_interactive-test-binding-pool.$(OBJEXT) \
test_interactive-test-text.$(OBJEXT) \
test_interactive-test-text-field.$(OBJEXT) \
test_interactive-test-cairo-clock.$(OBJEXT) \
test_interactive-test-cairo-flowers.$(OBJEXT) \
test_interactive-test-cogl-vertex-buffer.$(OBJEXT) \
test_interactive-test-stage-sizing.$(OBJEXT) \
test_interactive-test-scrolling.$(OBJEXT) \
test_interactive-test-swipe-action.$(OBJEXT) \
test_interactive-test-cogl-point-sprites.$(OBJEXT) \
test_interactive-test-table-layout.$(OBJEXT) \
test_interactive-test-path-constraint.$(OBJEXT) \
test_interactive-test-state-script.$(OBJEXT) \
test_interactive-test-devices.$(OBJEXT) \
test_interactive-test-content.$(OBJEXT) \
test_interactive-test-keyframe-transition.$(OBJEXT) \
test_interactive-test-bind-constraint.$(OBJEXT) \
test_interactive-test-touch-events.$(OBJEXT) \
test_interactive-test-rotate-zoom.$(OBJEXT) $(am__objects_1) \
$(am__objects_2)
am_test_interactive_OBJECTS = test_interactive-test-main.$(OBJEXT) \
$(am__objects_3)
nodist_test_interactive_OBJECTS =
test_interactive_OBJECTS = $(am_test_interactive_OBJECTS) \
$(nodist_test_interactive_OBJECTS)
am__DEPENDENCIES_1 =
test_interactive_DEPENDENCIES = $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(common_ldadd) $(am__DEPENDENCIES_1)
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 =
test_interactive_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(test_interactive_CFLAGS) $(CFLAGS) \
$(test_interactive_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)/clutter
depcomp = $(SHELL) $(top_srcdir)/build/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/test_interactive-test-actors.Po \
./$(DEPDIR)/test_interactive-test-animation.Po \
./$(DEPDIR)/test_interactive-test-animator.Po \
./$(DEPDIR)/test_interactive-test-bind-constraint.Po \
./$(DEPDIR)/test_interactive-test-binding-pool.Po \
./$(DEPDIR)/test_interactive-test-cairo-clock.Po \
./$(DEPDIR)/test_interactive-test-cairo-flowers.Po \
./$(DEPDIR)/test_interactive-test-cogl-multitexture.Po \
./$(DEPDIR)/test_interactive-test-cogl-offscreen.Po \
./$(DEPDIR)/test_interactive-test-cogl-point-sprites.Po \
./$(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Po \
./$(DEPDIR)/test_interactive-test-cogl-shader-glsl.Po \
./$(DEPDIR)/test_interactive-test-cogl-tex-convert.Po \
./$(DEPDIR)/test_interactive-test-cogl-tex-foreign.Po \
./$(DEPDIR)/test_interactive-test-cogl-tex-polygon.Po \
./$(DEPDIR)/test_interactive-test-cogl-tex-tile.Po \
./$(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Po \
./$(DEPDIR)/test_interactive-test-content.Po \
./$(DEPDIR)/test_interactive-test-devices.Po \
./$(DEPDIR)/test_interactive-test-easing.Po \
./$(DEPDIR)/test_interactive-test-events.Po \
./$(DEPDIR)/test_interactive-test-fbo.Po \
./$(DEPDIR)/test_interactive-test-grab.Po \
./$(DEPDIR)/test_interactive-test-image.Po \
./$(DEPDIR)/test_interactive-test-keyframe-transition.Po \
./$(DEPDIR)/test_interactive-test-layout.Po \
./$(DEPDIR)/test_interactive-test-main.Po \
./$(DEPDIR)/test_interactive-test-multistage.Po \
./$(DEPDIR)/test_interactive-test-paint-wrapper.Po \
./$(DEPDIR)/test_interactive-test-path-constraint.Po \
./$(DEPDIR)/test_interactive-test-pixmap.Po \
./$(DEPDIR)/test_interactive-test-rotate-zoom.Po \
./$(DEPDIR)/test_interactive-test-scale.Po \
./$(DEPDIR)/test_interactive-test-script.Po \
./$(DEPDIR)/test_interactive-test-scrolling.Po \
./$(DEPDIR)/test_interactive-test-shader-effects.Po \
./$(DEPDIR)/test_interactive-test-stage-read-pixels.Po \
./$(DEPDIR)/test_interactive-test-stage-sizing.Po \
./$(DEPDIR)/test_interactive-test-state-animator.Po \
./$(DEPDIR)/test_interactive-test-state-script.Po \
./$(DEPDIR)/test_interactive-test-state.Po \
./$(DEPDIR)/test_interactive-test-swipe-action.Po \
./$(DEPDIR)/test_interactive-test-table-layout.Po \
./$(DEPDIR)/test_interactive-test-text-field.Po \
./$(DEPDIR)/test_interactive-test-text.Po \
./$(DEPDIR)/test_interactive-test-texture-async.Po \
./$(DEPDIR)/test_interactive-test-texture-material.Po \
./$(DEPDIR)/test_interactive-test-texture-quality.Po \
./$(DEPDIR)/test_interactive-test-texture-slicing.Po \
./$(DEPDIR)/test_interactive-test-touch-events.Po
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 = $(test_interactive_SOURCES) \
$(nodist_test_interactive_SOURCES)
DIST_SOURCES = $(am__test_interactive_SOURCES_DIST)
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)`
ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/wrapper.sh.in \
$(top_srcdir)/build/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
ATK_REQ_VERSION = @ATK_REQ_VERSION@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CAIRO_REQ_VERSION = @CAIRO_REQ_VERSION@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CLUTTER_BACKENDS = @CLUTTER_BACKENDS@
CLUTTER_CFLAGS = @CLUTTER_CFLAGS@
CLUTTER_COGL = @CLUTTER_COGL@
CLUTTER_CONFIG_DEFINES = @CLUTTER_CONFIG_DEFINES@
CLUTTER_DEBUG_CFLAGS = @CLUTTER_DEBUG_CFLAGS@
CLUTTER_DEPRECATED_CFLAGS = @CLUTTER_DEPRECATED_CFLAGS@
CLUTTER_DEPS_CFLAGS = @CLUTTER_DEPS_CFLAGS@
CLUTTER_DEPS_LIBS = @CLUTTER_DEPS_LIBS@
CLUTTER_DEPS_PRIVATE_CFLAGS = @CLUTTER_DEPS_PRIVATE_CFLAGS@
CLUTTER_DEPS_PRIVATE_LIBS = @CLUTTER_DEPS_PRIVATE_LIBS@
CLUTTER_FLAVOUR = @CLUTTER_FLAVOUR@
CLUTTER_GCOV_CFLAGS = @CLUTTER_GCOV_CFLAGS@
CLUTTER_GCOV_LDADD = @CLUTTER_GCOV_LDADD@
CLUTTER_HIDDEN_VISIBILITY_CFLAGS = @CLUTTER_HIDDEN_VISIBILITY_CFLAGS@
CLUTTER_INPUT_BACKENDS = @CLUTTER_INPUT_BACKENDS@
CLUTTER_LIBS = @CLUTTER_LIBS@
CLUTTER_LINK_FLAGS = @CLUTTER_LINK_FLAGS@
CLUTTER_LT_CURRENT = @CLUTTER_LT_CURRENT@
CLUTTER_LT_LDFLAGS = @CLUTTER_LT_LDFLAGS@
CLUTTER_LT_REVISION = @CLUTTER_LT_REVISION@
CLUTTER_LT_VERSION = @CLUTTER_LT_VERSION@
CLUTTER_MAJOR_VERSION = @CLUTTER_MAJOR_VERSION@
CLUTTER_MICRO_VERSION = @CLUTTER_MICRO_VERSION@
CLUTTER_MINOR_VERSION = @CLUTTER_MINOR_VERSION@
CLUTTER_RELEASE_STATUS = @CLUTTER_RELEASE_STATUS@
CLUTTER_REQUIRES = @CLUTTER_REQUIRES@
CLUTTER_REQUIRES_PRIVATE = @CLUTTER_REQUIRES_PRIVATE@
CLUTTER_SONAME_INFIX = @CLUTTER_SONAME_INFIX@
CLUTTER_STAGE_TYPE = @CLUTTER_STAGE_TYPE@
CLUTTER_VERSION = @CLUTTER_VERSION@
CLUTTER_WINSYS = @CLUTTER_WINSYS@
CLUTTER_WINSYS_BASE = @CLUTTER_WINSYS_BASE@
COGL_DRIVER = @COGL_DRIVER@
COGL_REQ_VERSION = @COGL_REQ_VERSION@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GDK_PIXBUF_CFLAGS = @GDK_PIXBUF_CFLAGS@
GDK_PIXBUF_LIBS = @GDK_PIXBUF_LIBS@
GDK_REQ_VERSION = @GDK_REQ_VERSION@
GI_REQ_VERSION = @GI_REQ_VERSION@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
GLIB_LIBS = @GLIB_LIBS@
GLIB_MKENUMS = @GLIB_MKENUMS@
GLIB_REQ_VERSION = @GLIB_REQ_VERSION@
GOBJECT_QUERY = @GOBJECT_QUERY@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@
INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@
INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@
INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@
INTROSPECTION_LIBS = @INTROSPECTION_LIBS@
INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@
INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@
INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@
JSON_GLIB_REQ_VERSION = @JSON_GLIB_REQ_VERSION@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBINPUT_REQ_VERSION = @LIBINPUT_REQ_VERSION@
LIBM = @LIBM@
LIBMUTTER_API_VERSION = @LIBMUTTER_API_VERSION@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBUDEV_REQ_VERSION = @LIBUDEV_REQ_VERSION@
LIBWACOM_CFLAGS = @LIBWACOM_CFLAGS@
LIBWACOM_LIBS = @LIBWACOM_LIBS@
LIBWACOM_REQ_VERSION = @LIBWACOM_REQ_VERSION@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LTP = @LTP@
LTP_GENHTML = @LTP_GENHTML@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINTAINER_CFLAGS = @MAINTAINER_CFLAGS@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
MUTTER_VERSION = @MUTTER_VERSION@
NM = @NM@
NMEDIT = @NMEDIT@
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@
PANGO_REQ_VERSION = @PANGO_REQ_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SHTOOL = @SHTOOL@
STRIP = @STRIP@
VERSION = @VERSION@
XCOMPOSITE_REQ_VERSION = @XCOMPOSITE_REQ_VERSION@
XMKMF = @XMKMF@
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__tar = @am__tar@
am__untar = @am__untar@
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@
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@
installed_test_metadir = @installed_test_metadir@
installed_testdir = @installed_testdir@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
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@
UNIT_TESTS = test-texture-slicing.c test-texture-async.c \
test-texture-material.c test-events.c test-scale.c \
test-actors.c test-shader-effects.c test-script.c test-grab.c \
test-cogl-shader-arbfp.c test-cogl-shader-glsl.c \
test-animator.c test-state.c test-state-animator.c test-fbo.c \
test-multistage.c test-cogl-tex-tile.c test-cogl-tex-convert.c \
test-cogl-tex-foreign.c test-cogl-offscreen.c \
test-cogl-tex-polygon.c test-cogl-multitexture.c \
test-stage-read-pixels.c test-paint-wrapper.c \
test-texture-quality.c test-layout.c test-animation.c \
test-easing.c test-binding-pool.c test-text.c \
test-text-field.c test-cairo-clock.c test-cairo-flowers.c \
test-cogl-vertex-buffer.c test-stage-sizing.c test-scrolling.c \
test-swipe-action.c test-cogl-point-sprites.c \
test-table-layout.c test-path-constraint.c test-state-script.c \
test-devices.c test-content.c test-keyframe-transition.c \
test-bind-constraint.c test-touch-events.c test-rotate-zoom.c \
$(am__append_1) $(am__append_2)
SHEXT = $(EXEEXT)
GIT_IGNORE_EXTRA = \
stamp-test-interactive \
stamp-test-unit-names \
test-unit-names.h \
$(UNIT_TESTS:.c=$(SHEXT))
common_ldadd = \
$(top_builddir)/clutter/libmutter-clutter-@LIBMUTTER_API_VERSION@.la \
$(top_builddir)/../cogl/cogl/libmutter-cogl-@LIBMUTTER_API_VERSION@.la
check_SCRIPTS = wrappers
test_interactive_SOURCES = test-main.c $(UNIT_TESTS)
nodist_test_interactive_SOURCES = test-unit-names.h
test_interactive_CFLAGS = $(CLUTTER_CFLAGS) $(GDK_PIXBUF_CFLAGS)
test_interactive_CPPFLAGS = \
-DTESTS_DATADIR=\""$(abs_srcdir)"\" \
-DG_DISABLE_SINGLE_INCLUDES \
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
-DCOGL_DISABLE_DEPRECATION_WARNINGS \
-DCLUTTER_DISABLE_DEPRECATION_WARNINGS \
-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
test_interactive_LDFLAGS = -export-dynamic
test_interactive_LDADD = $(CLUTTER_LIBS) $(GDK_PIXBUF_LIBS) $(common_ldadd) $(LIBM)
EXTRA_DIST = \
wrapper.sh.in \
test-script.json \
test-script-signals.json \
redhand.png
DISTCLEANFILES = wrapper.sh .gitignore test-unit-names.h
BUILT_SOURCES = test-unit-names.h
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: $(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) --foreign tests/interactive/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign tests/interactive/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: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
wrapper.sh: $(top_builddir)/config.status $(srcdir)/wrapper.sh.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
clean-checkPROGRAMS:
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
test-interactive$(EXEEXT): $(test_interactive_OBJECTS) $(test_interactive_DEPENDENCIES) $(EXTRA_test_interactive_DEPENDENCIES)
@rm -f test-interactive$(EXEEXT)
$(AM_V_CCLD)$(test_interactive_LINK) $(test_interactive_OBJECTS) $(test_interactive_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-actors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-animation.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-animator.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-bind-constraint.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-binding-pool.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cairo-clock.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cairo-flowers.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-multitexture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-offscreen.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-point-sprites.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-shader-glsl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-tex-convert.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-tex-foreign.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-tex-polygon.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-tex-tile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-content.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-devices.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-easing.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-events.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-fbo.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-grab.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-image.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-keyframe-transition.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-layout.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-multistage.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-paint-wrapper.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-path-constraint.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-pixmap.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-rotate-zoom.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-scale.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-script.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-scrolling.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-shader-effects.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-stage-read-pixels.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-stage-sizing.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-state-animator.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-state-script.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-state.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-swipe-action.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-table-layout.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-text-field.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-text.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-texture-async.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-texture-material.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-texture-quality.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-texture-slicing.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interactive-test-touch-events.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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 $@ $<
test_interactive-test-main.o: test-main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-main.o -MD -MP -MF $(DEPDIR)/test_interactive-test-main.Tpo -c -o test_interactive-test-main.o `test -f 'test-main.c' || echo '$(srcdir)/'`test-main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-main.Tpo $(DEPDIR)/test_interactive-test-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-main.c' object='test_interactive-test-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-main.o `test -f 'test-main.c' || echo '$(srcdir)/'`test-main.c
test_interactive-test-main.obj: test-main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-main.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-main.Tpo -c -o test_interactive-test-main.obj `if test -f 'test-main.c'; then $(CYGPATH_W) 'test-main.c'; else $(CYGPATH_W) '$(srcdir)/test-main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-main.Tpo $(DEPDIR)/test_interactive-test-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-main.c' object='test_interactive-test-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-main.obj `if test -f 'test-main.c'; then $(CYGPATH_W) 'test-main.c'; else $(CYGPATH_W) '$(srcdir)/test-main.c'; fi`
test_interactive-test-texture-slicing.o: test-texture-slicing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-slicing.o -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-slicing.Tpo -c -o test_interactive-test-texture-slicing.o `test -f 'test-texture-slicing.c' || echo '$(srcdir)/'`test-texture-slicing.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-slicing.Tpo $(DEPDIR)/test_interactive-test-texture-slicing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-slicing.c' object='test_interactive-test-texture-slicing.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-slicing.o `test -f 'test-texture-slicing.c' || echo '$(srcdir)/'`test-texture-slicing.c
test_interactive-test-texture-slicing.obj: test-texture-slicing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-slicing.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-slicing.Tpo -c -o test_interactive-test-texture-slicing.obj `if test -f 'test-texture-slicing.c'; then $(CYGPATH_W) 'test-texture-slicing.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-slicing.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-slicing.Tpo $(DEPDIR)/test_interactive-test-texture-slicing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-slicing.c' object='test_interactive-test-texture-slicing.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-slicing.obj `if test -f 'test-texture-slicing.c'; then $(CYGPATH_W) 'test-texture-slicing.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-slicing.c'; fi`
test_interactive-test-texture-async.o: test-texture-async.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-async.o -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-async.Tpo -c -o test_interactive-test-texture-async.o `test -f 'test-texture-async.c' || echo '$(srcdir)/'`test-texture-async.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-async.Tpo $(DEPDIR)/test_interactive-test-texture-async.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-async.c' object='test_interactive-test-texture-async.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-async.o `test -f 'test-texture-async.c' || echo '$(srcdir)/'`test-texture-async.c
test_interactive-test-texture-async.obj: test-texture-async.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-async.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-async.Tpo -c -o test_interactive-test-texture-async.obj `if test -f 'test-texture-async.c'; then $(CYGPATH_W) 'test-texture-async.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-async.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-async.Tpo $(DEPDIR)/test_interactive-test-texture-async.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-async.c' object='test_interactive-test-texture-async.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-async.obj `if test -f 'test-texture-async.c'; then $(CYGPATH_W) 'test-texture-async.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-async.c'; fi`
test_interactive-test-texture-material.o: test-texture-material.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-material.o -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-material.Tpo -c -o test_interactive-test-texture-material.o `test -f 'test-texture-material.c' || echo '$(srcdir)/'`test-texture-material.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-material.Tpo $(DEPDIR)/test_interactive-test-texture-material.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-material.c' object='test_interactive-test-texture-material.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-material.o `test -f 'test-texture-material.c' || echo '$(srcdir)/'`test-texture-material.c
test_interactive-test-texture-material.obj: test-texture-material.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-material.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-material.Tpo -c -o test_interactive-test-texture-material.obj `if test -f 'test-texture-material.c'; then $(CYGPATH_W) 'test-texture-material.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-material.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-material.Tpo $(DEPDIR)/test_interactive-test-texture-material.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-material.c' object='test_interactive-test-texture-material.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-material.obj `if test -f 'test-texture-material.c'; then $(CYGPATH_W) 'test-texture-material.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-material.c'; fi`
test_interactive-test-events.o: test-events.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-events.o -MD -MP -MF $(DEPDIR)/test_interactive-test-events.Tpo -c -o test_interactive-test-events.o `test -f 'test-events.c' || echo '$(srcdir)/'`test-events.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-events.Tpo $(DEPDIR)/test_interactive-test-events.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-events.c' object='test_interactive-test-events.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-events.o `test -f 'test-events.c' || echo '$(srcdir)/'`test-events.c
test_interactive-test-events.obj: test-events.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-events.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-events.Tpo -c -o test_interactive-test-events.obj `if test -f 'test-events.c'; then $(CYGPATH_W) 'test-events.c'; else $(CYGPATH_W) '$(srcdir)/test-events.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-events.Tpo $(DEPDIR)/test_interactive-test-events.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-events.c' object='test_interactive-test-events.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-events.obj `if test -f 'test-events.c'; then $(CYGPATH_W) 'test-events.c'; else $(CYGPATH_W) '$(srcdir)/test-events.c'; fi`
test_interactive-test-scale.o: test-scale.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-scale.o -MD -MP -MF $(DEPDIR)/test_interactive-test-scale.Tpo -c -o test_interactive-test-scale.o `test -f 'test-scale.c' || echo '$(srcdir)/'`test-scale.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-scale.Tpo $(DEPDIR)/test_interactive-test-scale.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-scale.c' object='test_interactive-test-scale.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-scale.o `test -f 'test-scale.c' || echo '$(srcdir)/'`test-scale.c
test_interactive-test-scale.obj: test-scale.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-scale.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-scale.Tpo -c -o test_interactive-test-scale.obj `if test -f 'test-scale.c'; then $(CYGPATH_W) 'test-scale.c'; else $(CYGPATH_W) '$(srcdir)/test-scale.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-scale.Tpo $(DEPDIR)/test_interactive-test-scale.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-scale.c' object='test_interactive-test-scale.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-scale.obj `if test -f 'test-scale.c'; then $(CYGPATH_W) 'test-scale.c'; else $(CYGPATH_W) '$(srcdir)/test-scale.c'; fi`
test_interactive-test-actors.o: test-actors.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-actors.o -MD -MP -MF $(DEPDIR)/test_interactive-test-actors.Tpo -c -o test_interactive-test-actors.o `test -f 'test-actors.c' || echo '$(srcdir)/'`test-actors.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-actors.Tpo $(DEPDIR)/test_interactive-test-actors.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-actors.c' object='test_interactive-test-actors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-actors.o `test -f 'test-actors.c' || echo '$(srcdir)/'`test-actors.c
test_interactive-test-actors.obj: test-actors.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-actors.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-actors.Tpo -c -o test_interactive-test-actors.obj `if test -f 'test-actors.c'; then $(CYGPATH_W) 'test-actors.c'; else $(CYGPATH_W) '$(srcdir)/test-actors.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-actors.Tpo $(DEPDIR)/test_interactive-test-actors.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-actors.c' object='test_interactive-test-actors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-actors.obj `if test -f 'test-actors.c'; then $(CYGPATH_W) 'test-actors.c'; else $(CYGPATH_W) '$(srcdir)/test-actors.c'; fi`
test_interactive-test-shader-effects.o: test-shader-effects.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-shader-effects.o -MD -MP -MF $(DEPDIR)/test_interactive-test-shader-effects.Tpo -c -o test_interactive-test-shader-effects.o `test -f 'test-shader-effects.c' || echo '$(srcdir)/'`test-shader-effects.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-shader-effects.Tpo $(DEPDIR)/test_interactive-test-shader-effects.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-shader-effects.c' object='test_interactive-test-shader-effects.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-shader-effects.o `test -f 'test-shader-effects.c' || echo '$(srcdir)/'`test-shader-effects.c
test_interactive-test-shader-effects.obj: test-shader-effects.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-shader-effects.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-shader-effects.Tpo -c -o test_interactive-test-shader-effects.obj `if test -f 'test-shader-effects.c'; then $(CYGPATH_W) 'test-shader-effects.c'; else $(CYGPATH_W) '$(srcdir)/test-shader-effects.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-shader-effects.Tpo $(DEPDIR)/test_interactive-test-shader-effects.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-shader-effects.c' object='test_interactive-test-shader-effects.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-shader-effects.obj `if test -f 'test-shader-effects.c'; then $(CYGPATH_W) 'test-shader-effects.c'; else $(CYGPATH_W) '$(srcdir)/test-shader-effects.c'; fi`
test_interactive-test-script.o: test-script.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-script.o -MD -MP -MF $(DEPDIR)/test_interactive-test-script.Tpo -c -o test_interactive-test-script.o `test -f 'test-script.c' || echo '$(srcdir)/'`test-script.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-script.Tpo $(DEPDIR)/test_interactive-test-script.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-script.c' object='test_interactive-test-script.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-script.o `test -f 'test-script.c' || echo '$(srcdir)/'`test-script.c
test_interactive-test-script.obj: test-script.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-script.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-script.Tpo -c -o test_interactive-test-script.obj `if test -f 'test-script.c'; then $(CYGPATH_W) 'test-script.c'; else $(CYGPATH_W) '$(srcdir)/test-script.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-script.Tpo $(DEPDIR)/test_interactive-test-script.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-script.c' object='test_interactive-test-script.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-script.obj `if test -f 'test-script.c'; then $(CYGPATH_W) 'test-script.c'; else $(CYGPATH_W) '$(srcdir)/test-script.c'; fi`
test_interactive-test-grab.o: test-grab.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-grab.o -MD -MP -MF $(DEPDIR)/test_interactive-test-grab.Tpo -c -o test_interactive-test-grab.o `test -f 'test-grab.c' || echo '$(srcdir)/'`test-grab.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-grab.Tpo $(DEPDIR)/test_interactive-test-grab.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-grab.c' object='test_interactive-test-grab.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-grab.o `test -f 'test-grab.c' || echo '$(srcdir)/'`test-grab.c
test_interactive-test-grab.obj: test-grab.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-grab.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-grab.Tpo -c -o test_interactive-test-grab.obj `if test -f 'test-grab.c'; then $(CYGPATH_W) 'test-grab.c'; else $(CYGPATH_W) '$(srcdir)/test-grab.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-grab.Tpo $(DEPDIR)/test_interactive-test-grab.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-grab.c' object='test_interactive-test-grab.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-grab.obj `if test -f 'test-grab.c'; then $(CYGPATH_W) 'test-grab.c'; else $(CYGPATH_W) '$(srcdir)/test-grab.c'; fi`
test_interactive-test-cogl-shader-arbfp.o: test-cogl-shader-arbfp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-shader-arbfp.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Tpo -c -o test_interactive-test-cogl-shader-arbfp.o `test -f 'test-cogl-shader-arbfp.c' || echo '$(srcdir)/'`test-cogl-shader-arbfp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Tpo $(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-shader-arbfp.c' object='test_interactive-test-cogl-shader-arbfp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-shader-arbfp.o `test -f 'test-cogl-shader-arbfp.c' || echo '$(srcdir)/'`test-cogl-shader-arbfp.c
test_interactive-test-cogl-shader-arbfp.obj: test-cogl-shader-arbfp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-shader-arbfp.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Tpo -c -o test_interactive-test-cogl-shader-arbfp.obj `if test -f 'test-cogl-shader-arbfp.c'; then $(CYGPATH_W) 'test-cogl-shader-arbfp.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-shader-arbfp.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Tpo $(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-shader-arbfp.c' object='test_interactive-test-cogl-shader-arbfp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-shader-arbfp.obj `if test -f 'test-cogl-shader-arbfp.c'; then $(CYGPATH_W) 'test-cogl-shader-arbfp.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-shader-arbfp.c'; fi`
test_interactive-test-cogl-shader-glsl.o: test-cogl-shader-glsl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-shader-glsl.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-shader-glsl.Tpo -c -o test_interactive-test-cogl-shader-glsl.o `test -f 'test-cogl-shader-glsl.c' || echo '$(srcdir)/'`test-cogl-shader-glsl.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-shader-glsl.Tpo $(DEPDIR)/test_interactive-test-cogl-shader-glsl.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-shader-glsl.c' object='test_interactive-test-cogl-shader-glsl.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-shader-glsl.o `test -f 'test-cogl-shader-glsl.c' || echo '$(srcdir)/'`test-cogl-shader-glsl.c
test_interactive-test-cogl-shader-glsl.obj: test-cogl-shader-glsl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-shader-glsl.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-shader-glsl.Tpo -c -o test_interactive-test-cogl-shader-glsl.obj `if test -f 'test-cogl-shader-glsl.c'; then $(CYGPATH_W) 'test-cogl-shader-glsl.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-shader-glsl.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-shader-glsl.Tpo $(DEPDIR)/test_interactive-test-cogl-shader-glsl.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-shader-glsl.c' object='test_interactive-test-cogl-shader-glsl.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-shader-glsl.obj `if test -f 'test-cogl-shader-glsl.c'; then $(CYGPATH_W) 'test-cogl-shader-glsl.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-shader-glsl.c'; fi`
test_interactive-test-animator.o: test-animator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-animator.o -MD -MP -MF $(DEPDIR)/test_interactive-test-animator.Tpo -c -o test_interactive-test-animator.o `test -f 'test-animator.c' || echo '$(srcdir)/'`test-animator.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-animator.Tpo $(DEPDIR)/test_interactive-test-animator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-animator.c' object='test_interactive-test-animator.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-animator.o `test -f 'test-animator.c' || echo '$(srcdir)/'`test-animator.c
test_interactive-test-animator.obj: test-animator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-animator.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-animator.Tpo -c -o test_interactive-test-animator.obj `if test -f 'test-animator.c'; then $(CYGPATH_W) 'test-animator.c'; else $(CYGPATH_W) '$(srcdir)/test-animator.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-animator.Tpo $(DEPDIR)/test_interactive-test-animator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-animator.c' object='test_interactive-test-animator.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-animator.obj `if test -f 'test-animator.c'; then $(CYGPATH_W) 'test-animator.c'; else $(CYGPATH_W) '$(srcdir)/test-animator.c'; fi`
test_interactive-test-state.o: test-state.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-state.o -MD -MP -MF $(DEPDIR)/test_interactive-test-state.Tpo -c -o test_interactive-test-state.o `test -f 'test-state.c' || echo '$(srcdir)/'`test-state.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-state.Tpo $(DEPDIR)/test_interactive-test-state.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-state.c' object='test_interactive-test-state.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-state.o `test -f 'test-state.c' || echo '$(srcdir)/'`test-state.c
test_interactive-test-state.obj: test-state.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-state.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-state.Tpo -c -o test_interactive-test-state.obj `if test -f 'test-state.c'; then $(CYGPATH_W) 'test-state.c'; else $(CYGPATH_W) '$(srcdir)/test-state.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-state.Tpo $(DEPDIR)/test_interactive-test-state.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-state.c' object='test_interactive-test-state.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-state.obj `if test -f 'test-state.c'; then $(CYGPATH_W) 'test-state.c'; else $(CYGPATH_W) '$(srcdir)/test-state.c'; fi`
test_interactive-test-state-animator.o: test-state-animator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-state-animator.o -MD -MP -MF $(DEPDIR)/test_interactive-test-state-animator.Tpo -c -o test_interactive-test-state-animator.o `test -f 'test-state-animator.c' || echo '$(srcdir)/'`test-state-animator.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-state-animator.Tpo $(DEPDIR)/test_interactive-test-state-animator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-state-animator.c' object='test_interactive-test-state-animator.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-state-animator.o `test -f 'test-state-animator.c' || echo '$(srcdir)/'`test-state-animator.c
test_interactive-test-state-animator.obj: test-state-animator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-state-animator.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-state-animator.Tpo -c -o test_interactive-test-state-animator.obj `if test -f 'test-state-animator.c'; then $(CYGPATH_W) 'test-state-animator.c'; else $(CYGPATH_W) '$(srcdir)/test-state-animator.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-state-animator.Tpo $(DEPDIR)/test_interactive-test-state-animator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-state-animator.c' object='test_interactive-test-state-animator.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-state-animator.obj `if test -f 'test-state-animator.c'; then $(CYGPATH_W) 'test-state-animator.c'; else $(CYGPATH_W) '$(srcdir)/test-state-animator.c'; fi`
test_interactive-test-fbo.o: test-fbo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-fbo.o -MD -MP -MF $(DEPDIR)/test_interactive-test-fbo.Tpo -c -o test_interactive-test-fbo.o `test -f 'test-fbo.c' || echo '$(srcdir)/'`test-fbo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-fbo.Tpo $(DEPDIR)/test_interactive-test-fbo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-fbo.c' object='test_interactive-test-fbo.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-fbo.o `test -f 'test-fbo.c' || echo '$(srcdir)/'`test-fbo.c
test_interactive-test-fbo.obj: test-fbo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-fbo.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-fbo.Tpo -c -o test_interactive-test-fbo.obj `if test -f 'test-fbo.c'; then $(CYGPATH_W) 'test-fbo.c'; else $(CYGPATH_W) '$(srcdir)/test-fbo.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-fbo.Tpo $(DEPDIR)/test_interactive-test-fbo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-fbo.c' object='test_interactive-test-fbo.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-fbo.obj `if test -f 'test-fbo.c'; then $(CYGPATH_W) 'test-fbo.c'; else $(CYGPATH_W) '$(srcdir)/test-fbo.c'; fi`
test_interactive-test-multistage.o: test-multistage.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-multistage.o -MD -MP -MF $(DEPDIR)/test_interactive-test-multistage.Tpo -c -o test_interactive-test-multistage.o `test -f 'test-multistage.c' || echo '$(srcdir)/'`test-multistage.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-multistage.Tpo $(DEPDIR)/test_interactive-test-multistage.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-multistage.c' object='test_interactive-test-multistage.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-multistage.o `test -f 'test-multistage.c' || echo '$(srcdir)/'`test-multistage.c
test_interactive-test-multistage.obj: test-multistage.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-multistage.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-multistage.Tpo -c -o test_interactive-test-multistage.obj `if test -f 'test-multistage.c'; then $(CYGPATH_W) 'test-multistage.c'; else $(CYGPATH_W) '$(srcdir)/test-multistage.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-multistage.Tpo $(DEPDIR)/test_interactive-test-multistage.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-multistage.c' object='test_interactive-test-multistage.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-multistage.obj `if test -f 'test-multistage.c'; then $(CYGPATH_W) 'test-multistage.c'; else $(CYGPATH_W) '$(srcdir)/test-multistage.c'; fi`
test_interactive-test-cogl-tex-tile.o: test-cogl-tex-tile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-tile.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-tile.Tpo -c -o test_interactive-test-cogl-tex-tile.o `test -f 'test-cogl-tex-tile.c' || echo '$(srcdir)/'`test-cogl-tex-tile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-tile.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-tile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-tile.c' object='test_interactive-test-cogl-tex-tile.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-tile.o `test -f 'test-cogl-tex-tile.c' || echo '$(srcdir)/'`test-cogl-tex-tile.c
test_interactive-test-cogl-tex-tile.obj: test-cogl-tex-tile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-tile.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-tile.Tpo -c -o test_interactive-test-cogl-tex-tile.obj `if test -f 'test-cogl-tex-tile.c'; then $(CYGPATH_W) 'test-cogl-tex-tile.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-tile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-tile.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-tile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-tile.c' object='test_interactive-test-cogl-tex-tile.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-tile.obj `if test -f 'test-cogl-tex-tile.c'; then $(CYGPATH_W) 'test-cogl-tex-tile.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-tile.c'; fi`
test_interactive-test-cogl-tex-convert.o: test-cogl-tex-convert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-convert.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-convert.Tpo -c -o test_interactive-test-cogl-tex-convert.o `test -f 'test-cogl-tex-convert.c' || echo '$(srcdir)/'`test-cogl-tex-convert.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-convert.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-convert.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-convert.c' object='test_interactive-test-cogl-tex-convert.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-convert.o `test -f 'test-cogl-tex-convert.c' || echo '$(srcdir)/'`test-cogl-tex-convert.c
test_interactive-test-cogl-tex-convert.obj: test-cogl-tex-convert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-convert.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-convert.Tpo -c -o test_interactive-test-cogl-tex-convert.obj `if test -f 'test-cogl-tex-convert.c'; then $(CYGPATH_W) 'test-cogl-tex-convert.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-convert.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-convert.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-convert.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-convert.c' object='test_interactive-test-cogl-tex-convert.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-convert.obj `if test -f 'test-cogl-tex-convert.c'; then $(CYGPATH_W) 'test-cogl-tex-convert.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-convert.c'; fi`
test_interactive-test-cogl-tex-foreign.o: test-cogl-tex-foreign.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-foreign.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-foreign.Tpo -c -o test_interactive-test-cogl-tex-foreign.o `test -f 'test-cogl-tex-foreign.c' || echo '$(srcdir)/'`test-cogl-tex-foreign.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-foreign.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-foreign.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-foreign.c' object='test_interactive-test-cogl-tex-foreign.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-foreign.o `test -f 'test-cogl-tex-foreign.c' || echo '$(srcdir)/'`test-cogl-tex-foreign.c
test_interactive-test-cogl-tex-foreign.obj: test-cogl-tex-foreign.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-foreign.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-foreign.Tpo -c -o test_interactive-test-cogl-tex-foreign.obj `if test -f 'test-cogl-tex-foreign.c'; then $(CYGPATH_W) 'test-cogl-tex-foreign.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-foreign.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-foreign.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-foreign.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-foreign.c' object='test_interactive-test-cogl-tex-foreign.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-foreign.obj `if test -f 'test-cogl-tex-foreign.c'; then $(CYGPATH_W) 'test-cogl-tex-foreign.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-foreign.c'; fi`
test_interactive-test-cogl-offscreen.o: test-cogl-offscreen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-offscreen.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-offscreen.Tpo -c -o test_interactive-test-cogl-offscreen.o `test -f 'test-cogl-offscreen.c' || echo '$(srcdir)/'`test-cogl-offscreen.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-offscreen.Tpo $(DEPDIR)/test_interactive-test-cogl-offscreen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-offscreen.c' object='test_interactive-test-cogl-offscreen.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-offscreen.o `test -f 'test-cogl-offscreen.c' || echo '$(srcdir)/'`test-cogl-offscreen.c
test_interactive-test-cogl-offscreen.obj: test-cogl-offscreen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-offscreen.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-offscreen.Tpo -c -o test_interactive-test-cogl-offscreen.obj `if test -f 'test-cogl-offscreen.c'; then $(CYGPATH_W) 'test-cogl-offscreen.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-offscreen.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-offscreen.Tpo $(DEPDIR)/test_interactive-test-cogl-offscreen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-offscreen.c' object='test_interactive-test-cogl-offscreen.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-offscreen.obj `if test -f 'test-cogl-offscreen.c'; then $(CYGPATH_W) 'test-cogl-offscreen.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-offscreen.c'; fi`
test_interactive-test-cogl-tex-polygon.o: test-cogl-tex-polygon.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-polygon.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-polygon.Tpo -c -o test_interactive-test-cogl-tex-polygon.o `test -f 'test-cogl-tex-polygon.c' || echo '$(srcdir)/'`test-cogl-tex-polygon.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-polygon.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-polygon.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-polygon.c' object='test_interactive-test-cogl-tex-polygon.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-polygon.o `test -f 'test-cogl-tex-polygon.c' || echo '$(srcdir)/'`test-cogl-tex-polygon.c
test_interactive-test-cogl-tex-polygon.obj: test-cogl-tex-polygon.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-tex-polygon.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-tex-polygon.Tpo -c -o test_interactive-test-cogl-tex-polygon.obj `if test -f 'test-cogl-tex-polygon.c'; then $(CYGPATH_W) 'test-cogl-tex-polygon.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-polygon.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-tex-polygon.Tpo $(DEPDIR)/test_interactive-test-cogl-tex-polygon.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-tex-polygon.c' object='test_interactive-test-cogl-tex-polygon.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-tex-polygon.obj `if test -f 'test-cogl-tex-polygon.c'; then $(CYGPATH_W) 'test-cogl-tex-polygon.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-tex-polygon.c'; fi`
test_interactive-test-cogl-multitexture.o: test-cogl-multitexture.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-multitexture.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-multitexture.Tpo -c -o test_interactive-test-cogl-multitexture.o `test -f 'test-cogl-multitexture.c' || echo '$(srcdir)/'`test-cogl-multitexture.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-multitexture.Tpo $(DEPDIR)/test_interactive-test-cogl-multitexture.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-multitexture.c' object='test_interactive-test-cogl-multitexture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-multitexture.o `test -f 'test-cogl-multitexture.c' || echo '$(srcdir)/'`test-cogl-multitexture.c
test_interactive-test-cogl-multitexture.obj: test-cogl-multitexture.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-multitexture.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-multitexture.Tpo -c -o test_interactive-test-cogl-multitexture.obj `if test -f 'test-cogl-multitexture.c'; then $(CYGPATH_W) 'test-cogl-multitexture.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-multitexture.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-multitexture.Tpo $(DEPDIR)/test_interactive-test-cogl-multitexture.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-multitexture.c' object='test_interactive-test-cogl-multitexture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-multitexture.obj `if test -f 'test-cogl-multitexture.c'; then $(CYGPATH_W) 'test-cogl-multitexture.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-multitexture.c'; fi`
test_interactive-test-stage-read-pixels.o: test-stage-read-pixels.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-stage-read-pixels.o -MD -MP -MF $(DEPDIR)/test_interactive-test-stage-read-pixels.Tpo -c -o test_interactive-test-stage-read-pixels.o `test -f 'test-stage-read-pixels.c' || echo '$(srcdir)/'`test-stage-read-pixels.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-stage-read-pixels.Tpo $(DEPDIR)/test_interactive-test-stage-read-pixels.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-stage-read-pixels.c' object='test_interactive-test-stage-read-pixels.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-stage-read-pixels.o `test -f 'test-stage-read-pixels.c' || echo '$(srcdir)/'`test-stage-read-pixels.c
test_interactive-test-stage-read-pixels.obj: test-stage-read-pixels.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-stage-read-pixels.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-stage-read-pixels.Tpo -c -o test_interactive-test-stage-read-pixels.obj `if test -f 'test-stage-read-pixels.c'; then $(CYGPATH_W) 'test-stage-read-pixels.c'; else $(CYGPATH_W) '$(srcdir)/test-stage-read-pixels.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-stage-read-pixels.Tpo $(DEPDIR)/test_interactive-test-stage-read-pixels.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-stage-read-pixels.c' object='test_interactive-test-stage-read-pixels.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-stage-read-pixels.obj `if test -f 'test-stage-read-pixels.c'; then $(CYGPATH_W) 'test-stage-read-pixels.c'; else $(CYGPATH_W) '$(srcdir)/test-stage-read-pixels.c'; fi`
test_interactive-test-paint-wrapper.o: test-paint-wrapper.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-paint-wrapper.o -MD -MP -MF $(DEPDIR)/test_interactive-test-paint-wrapper.Tpo -c -o test_interactive-test-paint-wrapper.o `test -f 'test-paint-wrapper.c' || echo '$(srcdir)/'`test-paint-wrapper.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-paint-wrapper.Tpo $(DEPDIR)/test_interactive-test-paint-wrapper.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-paint-wrapper.c' object='test_interactive-test-paint-wrapper.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-paint-wrapper.o `test -f 'test-paint-wrapper.c' || echo '$(srcdir)/'`test-paint-wrapper.c
test_interactive-test-paint-wrapper.obj: test-paint-wrapper.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-paint-wrapper.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-paint-wrapper.Tpo -c -o test_interactive-test-paint-wrapper.obj `if test -f 'test-paint-wrapper.c'; then $(CYGPATH_W) 'test-paint-wrapper.c'; else $(CYGPATH_W) '$(srcdir)/test-paint-wrapper.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-paint-wrapper.Tpo $(DEPDIR)/test_interactive-test-paint-wrapper.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-paint-wrapper.c' object='test_interactive-test-paint-wrapper.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-paint-wrapper.obj `if test -f 'test-paint-wrapper.c'; then $(CYGPATH_W) 'test-paint-wrapper.c'; else $(CYGPATH_W) '$(srcdir)/test-paint-wrapper.c'; fi`
test_interactive-test-texture-quality.o: test-texture-quality.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-quality.o -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-quality.Tpo -c -o test_interactive-test-texture-quality.o `test -f 'test-texture-quality.c' || echo '$(srcdir)/'`test-texture-quality.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-quality.Tpo $(DEPDIR)/test_interactive-test-texture-quality.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-quality.c' object='test_interactive-test-texture-quality.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-quality.o `test -f 'test-texture-quality.c' || echo '$(srcdir)/'`test-texture-quality.c
test_interactive-test-texture-quality.obj: test-texture-quality.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-texture-quality.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-texture-quality.Tpo -c -o test_interactive-test-texture-quality.obj `if test -f 'test-texture-quality.c'; then $(CYGPATH_W) 'test-texture-quality.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-quality.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-texture-quality.Tpo $(DEPDIR)/test_interactive-test-texture-quality.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-texture-quality.c' object='test_interactive-test-texture-quality.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-texture-quality.obj `if test -f 'test-texture-quality.c'; then $(CYGPATH_W) 'test-texture-quality.c'; else $(CYGPATH_W) '$(srcdir)/test-texture-quality.c'; fi`
test_interactive-test-layout.o: test-layout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-layout.o -MD -MP -MF $(DEPDIR)/test_interactive-test-layout.Tpo -c -o test_interactive-test-layout.o `test -f 'test-layout.c' || echo '$(srcdir)/'`test-layout.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-layout.Tpo $(DEPDIR)/test_interactive-test-layout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-layout.c' object='test_interactive-test-layout.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-layout.o `test -f 'test-layout.c' || echo '$(srcdir)/'`test-layout.c
test_interactive-test-layout.obj: test-layout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-layout.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-layout.Tpo -c -o test_interactive-test-layout.obj `if test -f 'test-layout.c'; then $(CYGPATH_W) 'test-layout.c'; else $(CYGPATH_W) '$(srcdir)/test-layout.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-layout.Tpo $(DEPDIR)/test_interactive-test-layout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-layout.c' object='test_interactive-test-layout.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-layout.obj `if test -f 'test-layout.c'; then $(CYGPATH_W) 'test-layout.c'; else $(CYGPATH_W) '$(srcdir)/test-layout.c'; fi`
test_interactive-test-animation.o: test-animation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-animation.o -MD -MP -MF $(DEPDIR)/test_interactive-test-animation.Tpo -c -o test_interactive-test-animation.o `test -f 'test-animation.c' || echo '$(srcdir)/'`test-animation.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-animation.Tpo $(DEPDIR)/test_interactive-test-animation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-animation.c' object='test_interactive-test-animation.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-animation.o `test -f 'test-animation.c' || echo '$(srcdir)/'`test-animation.c
test_interactive-test-animation.obj: test-animation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-animation.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-animation.Tpo -c -o test_interactive-test-animation.obj `if test -f 'test-animation.c'; then $(CYGPATH_W) 'test-animation.c'; else $(CYGPATH_W) '$(srcdir)/test-animation.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-animation.Tpo $(DEPDIR)/test_interactive-test-animation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-animation.c' object='test_interactive-test-animation.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-animation.obj `if test -f 'test-animation.c'; then $(CYGPATH_W) 'test-animation.c'; else $(CYGPATH_W) '$(srcdir)/test-animation.c'; fi`
test_interactive-test-easing.o: test-easing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-easing.o -MD -MP -MF $(DEPDIR)/test_interactive-test-easing.Tpo -c -o test_interactive-test-easing.o `test -f 'test-easing.c' || echo '$(srcdir)/'`test-easing.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-easing.Tpo $(DEPDIR)/test_interactive-test-easing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-easing.c' object='test_interactive-test-easing.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-easing.o `test -f 'test-easing.c' || echo '$(srcdir)/'`test-easing.c
test_interactive-test-easing.obj: test-easing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-easing.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-easing.Tpo -c -o test_interactive-test-easing.obj `if test -f 'test-easing.c'; then $(CYGPATH_W) 'test-easing.c'; else $(CYGPATH_W) '$(srcdir)/test-easing.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-easing.Tpo $(DEPDIR)/test_interactive-test-easing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-easing.c' object='test_interactive-test-easing.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-easing.obj `if test -f 'test-easing.c'; then $(CYGPATH_W) 'test-easing.c'; else $(CYGPATH_W) '$(srcdir)/test-easing.c'; fi`
test_interactive-test-binding-pool.o: test-binding-pool.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-binding-pool.o -MD -MP -MF $(DEPDIR)/test_interactive-test-binding-pool.Tpo -c -o test_interactive-test-binding-pool.o `test -f 'test-binding-pool.c' || echo '$(srcdir)/'`test-binding-pool.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-binding-pool.Tpo $(DEPDIR)/test_interactive-test-binding-pool.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-binding-pool.c' object='test_interactive-test-binding-pool.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-binding-pool.o `test -f 'test-binding-pool.c' || echo '$(srcdir)/'`test-binding-pool.c
test_interactive-test-binding-pool.obj: test-binding-pool.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-binding-pool.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-binding-pool.Tpo -c -o test_interactive-test-binding-pool.obj `if test -f 'test-binding-pool.c'; then $(CYGPATH_W) 'test-binding-pool.c'; else $(CYGPATH_W) '$(srcdir)/test-binding-pool.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-binding-pool.Tpo $(DEPDIR)/test_interactive-test-binding-pool.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-binding-pool.c' object='test_interactive-test-binding-pool.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-binding-pool.obj `if test -f 'test-binding-pool.c'; then $(CYGPATH_W) 'test-binding-pool.c'; else $(CYGPATH_W) '$(srcdir)/test-binding-pool.c'; fi`
test_interactive-test-text.o: test-text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-text.o -MD -MP -MF $(DEPDIR)/test_interactive-test-text.Tpo -c -o test_interactive-test-text.o `test -f 'test-text.c' || echo '$(srcdir)/'`test-text.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-text.Tpo $(DEPDIR)/test_interactive-test-text.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-text.c' object='test_interactive-test-text.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-text.o `test -f 'test-text.c' || echo '$(srcdir)/'`test-text.c
test_interactive-test-text.obj: test-text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-text.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-text.Tpo -c -o test_interactive-test-text.obj `if test -f 'test-text.c'; then $(CYGPATH_W) 'test-text.c'; else $(CYGPATH_W) '$(srcdir)/test-text.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-text.Tpo $(DEPDIR)/test_interactive-test-text.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-text.c' object='test_interactive-test-text.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-text.obj `if test -f 'test-text.c'; then $(CYGPATH_W) 'test-text.c'; else $(CYGPATH_W) '$(srcdir)/test-text.c'; fi`
test_interactive-test-text-field.o: test-text-field.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-text-field.o -MD -MP -MF $(DEPDIR)/test_interactive-test-text-field.Tpo -c -o test_interactive-test-text-field.o `test -f 'test-text-field.c' || echo '$(srcdir)/'`test-text-field.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-text-field.Tpo $(DEPDIR)/test_interactive-test-text-field.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-text-field.c' object='test_interactive-test-text-field.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-text-field.o `test -f 'test-text-field.c' || echo '$(srcdir)/'`test-text-field.c
test_interactive-test-text-field.obj: test-text-field.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-text-field.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-text-field.Tpo -c -o test_interactive-test-text-field.obj `if test -f 'test-text-field.c'; then $(CYGPATH_W) 'test-text-field.c'; else $(CYGPATH_W) '$(srcdir)/test-text-field.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-text-field.Tpo $(DEPDIR)/test_interactive-test-text-field.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-text-field.c' object='test_interactive-test-text-field.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-text-field.obj `if test -f 'test-text-field.c'; then $(CYGPATH_W) 'test-text-field.c'; else $(CYGPATH_W) '$(srcdir)/test-text-field.c'; fi`
test_interactive-test-cairo-clock.o: test-cairo-clock.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cairo-clock.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cairo-clock.Tpo -c -o test_interactive-test-cairo-clock.o `test -f 'test-cairo-clock.c' || echo '$(srcdir)/'`test-cairo-clock.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cairo-clock.Tpo $(DEPDIR)/test_interactive-test-cairo-clock.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cairo-clock.c' object='test_interactive-test-cairo-clock.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cairo-clock.o `test -f 'test-cairo-clock.c' || echo '$(srcdir)/'`test-cairo-clock.c
test_interactive-test-cairo-clock.obj: test-cairo-clock.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cairo-clock.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cairo-clock.Tpo -c -o test_interactive-test-cairo-clock.obj `if test -f 'test-cairo-clock.c'; then $(CYGPATH_W) 'test-cairo-clock.c'; else $(CYGPATH_W) '$(srcdir)/test-cairo-clock.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cairo-clock.Tpo $(DEPDIR)/test_interactive-test-cairo-clock.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cairo-clock.c' object='test_interactive-test-cairo-clock.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cairo-clock.obj `if test -f 'test-cairo-clock.c'; then $(CYGPATH_W) 'test-cairo-clock.c'; else $(CYGPATH_W) '$(srcdir)/test-cairo-clock.c'; fi`
test_interactive-test-cairo-flowers.o: test-cairo-flowers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cairo-flowers.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cairo-flowers.Tpo -c -o test_interactive-test-cairo-flowers.o `test -f 'test-cairo-flowers.c' || echo '$(srcdir)/'`test-cairo-flowers.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cairo-flowers.Tpo $(DEPDIR)/test_interactive-test-cairo-flowers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cairo-flowers.c' object='test_interactive-test-cairo-flowers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cairo-flowers.o `test -f 'test-cairo-flowers.c' || echo '$(srcdir)/'`test-cairo-flowers.c
test_interactive-test-cairo-flowers.obj: test-cairo-flowers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cairo-flowers.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cairo-flowers.Tpo -c -o test_interactive-test-cairo-flowers.obj `if test -f 'test-cairo-flowers.c'; then $(CYGPATH_W) 'test-cairo-flowers.c'; else $(CYGPATH_W) '$(srcdir)/test-cairo-flowers.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cairo-flowers.Tpo $(DEPDIR)/test_interactive-test-cairo-flowers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cairo-flowers.c' object='test_interactive-test-cairo-flowers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cairo-flowers.obj `if test -f 'test-cairo-flowers.c'; then $(CYGPATH_W) 'test-cairo-flowers.c'; else $(CYGPATH_W) '$(srcdir)/test-cairo-flowers.c'; fi`
test_interactive-test-cogl-vertex-buffer.o: test-cogl-vertex-buffer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-vertex-buffer.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Tpo -c -o test_interactive-test-cogl-vertex-buffer.o `test -f 'test-cogl-vertex-buffer.c' || echo '$(srcdir)/'`test-cogl-vertex-buffer.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Tpo $(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-vertex-buffer.c' object='test_interactive-test-cogl-vertex-buffer.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-vertex-buffer.o `test -f 'test-cogl-vertex-buffer.c' || echo '$(srcdir)/'`test-cogl-vertex-buffer.c
test_interactive-test-cogl-vertex-buffer.obj: test-cogl-vertex-buffer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-vertex-buffer.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Tpo -c -o test_interactive-test-cogl-vertex-buffer.obj `if test -f 'test-cogl-vertex-buffer.c'; then $(CYGPATH_W) 'test-cogl-vertex-buffer.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-vertex-buffer.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Tpo $(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-vertex-buffer.c' object='test_interactive-test-cogl-vertex-buffer.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-vertex-buffer.obj `if test -f 'test-cogl-vertex-buffer.c'; then $(CYGPATH_W) 'test-cogl-vertex-buffer.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-vertex-buffer.c'; fi`
test_interactive-test-stage-sizing.o: test-stage-sizing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-stage-sizing.o -MD -MP -MF $(DEPDIR)/test_interactive-test-stage-sizing.Tpo -c -o test_interactive-test-stage-sizing.o `test -f 'test-stage-sizing.c' || echo '$(srcdir)/'`test-stage-sizing.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-stage-sizing.Tpo $(DEPDIR)/test_interactive-test-stage-sizing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-stage-sizing.c' object='test_interactive-test-stage-sizing.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-stage-sizing.o `test -f 'test-stage-sizing.c' || echo '$(srcdir)/'`test-stage-sizing.c
test_interactive-test-stage-sizing.obj: test-stage-sizing.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-stage-sizing.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-stage-sizing.Tpo -c -o test_interactive-test-stage-sizing.obj `if test -f 'test-stage-sizing.c'; then $(CYGPATH_W) 'test-stage-sizing.c'; else $(CYGPATH_W) '$(srcdir)/test-stage-sizing.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-stage-sizing.Tpo $(DEPDIR)/test_interactive-test-stage-sizing.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-stage-sizing.c' object='test_interactive-test-stage-sizing.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-stage-sizing.obj `if test -f 'test-stage-sizing.c'; then $(CYGPATH_W) 'test-stage-sizing.c'; else $(CYGPATH_W) '$(srcdir)/test-stage-sizing.c'; fi`
test_interactive-test-scrolling.o: test-scrolling.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-scrolling.o -MD -MP -MF $(DEPDIR)/test_interactive-test-scrolling.Tpo -c -o test_interactive-test-scrolling.o `test -f 'test-scrolling.c' || echo '$(srcdir)/'`test-scrolling.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-scrolling.Tpo $(DEPDIR)/test_interactive-test-scrolling.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-scrolling.c' object='test_interactive-test-scrolling.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-scrolling.o `test -f 'test-scrolling.c' || echo '$(srcdir)/'`test-scrolling.c
test_interactive-test-scrolling.obj: test-scrolling.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-scrolling.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-scrolling.Tpo -c -o test_interactive-test-scrolling.obj `if test -f 'test-scrolling.c'; then $(CYGPATH_W) 'test-scrolling.c'; else $(CYGPATH_W) '$(srcdir)/test-scrolling.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-scrolling.Tpo $(DEPDIR)/test_interactive-test-scrolling.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-scrolling.c' object='test_interactive-test-scrolling.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-scrolling.obj `if test -f 'test-scrolling.c'; then $(CYGPATH_W) 'test-scrolling.c'; else $(CYGPATH_W) '$(srcdir)/test-scrolling.c'; fi`
test_interactive-test-swipe-action.o: test-swipe-action.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-swipe-action.o -MD -MP -MF $(DEPDIR)/test_interactive-test-swipe-action.Tpo -c -o test_interactive-test-swipe-action.o `test -f 'test-swipe-action.c' || echo '$(srcdir)/'`test-swipe-action.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-swipe-action.Tpo $(DEPDIR)/test_interactive-test-swipe-action.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-swipe-action.c' object='test_interactive-test-swipe-action.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-swipe-action.o `test -f 'test-swipe-action.c' || echo '$(srcdir)/'`test-swipe-action.c
test_interactive-test-swipe-action.obj: test-swipe-action.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-swipe-action.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-swipe-action.Tpo -c -o test_interactive-test-swipe-action.obj `if test -f 'test-swipe-action.c'; then $(CYGPATH_W) 'test-swipe-action.c'; else $(CYGPATH_W) '$(srcdir)/test-swipe-action.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-swipe-action.Tpo $(DEPDIR)/test_interactive-test-swipe-action.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-swipe-action.c' object='test_interactive-test-swipe-action.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-swipe-action.obj `if test -f 'test-swipe-action.c'; then $(CYGPATH_W) 'test-swipe-action.c'; else $(CYGPATH_W) '$(srcdir)/test-swipe-action.c'; fi`
test_interactive-test-cogl-point-sprites.o: test-cogl-point-sprites.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-point-sprites.o -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-point-sprites.Tpo -c -o test_interactive-test-cogl-point-sprites.o `test -f 'test-cogl-point-sprites.c' || echo '$(srcdir)/'`test-cogl-point-sprites.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-point-sprites.Tpo $(DEPDIR)/test_interactive-test-cogl-point-sprites.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-point-sprites.c' object='test_interactive-test-cogl-point-sprites.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-point-sprites.o `test -f 'test-cogl-point-sprites.c' || echo '$(srcdir)/'`test-cogl-point-sprites.c
test_interactive-test-cogl-point-sprites.obj: test-cogl-point-sprites.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-cogl-point-sprites.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-cogl-point-sprites.Tpo -c -o test_interactive-test-cogl-point-sprites.obj `if test -f 'test-cogl-point-sprites.c'; then $(CYGPATH_W) 'test-cogl-point-sprites.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-point-sprites.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-cogl-point-sprites.Tpo $(DEPDIR)/test_interactive-test-cogl-point-sprites.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-cogl-point-sprites.c' object='test_interactive-test-cogl-point-sprites.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-cogl-point-sprites.obj `if test -f 'test-cogl-point-sprites.c'; then $(CYGPATH_W) 'test-cogl-point-sprites.c'; else $(CYGPATH_W) '$(srcdir)/test-cogl-point-sprites.c'; fi`
test_interactive-test-table-layout.o: test-table-layout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-table-layout.o -MD -MP -MF $(DEPDIR)/test_interactive-test-table-layout.Tpo -c -o test_interactive-test-table-layout.o `test -f 'test-table-layout.c' || echo '$(srcdir)/'`test-table-layout.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-table-layout.Tpo $(DEPDIR)/test_interactive-test-table-layout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-table-layout.c' object='test_interactive-test-table-layout.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-table-layout.o `test -f 'test-table-layout.c' || echo '$(srcdir)/'`test-table-layout.c
test_interactive-test-table-layout.obj: test-table-layout.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-table-layout.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-table-layout.Tpo -c -o test_interactive-test-table-layout.obj `if test -f 'test-table-layout.c'; then $(CYGPATH_W) 'test-table-layout.c'; else $(CYGPATH_W) '$(srcdir)/test-table-layout.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-table-layout.Tpo $(DEPDIR)/test_interactive-test-table-layout.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-table-layout.c' object='test_interactive-test-table-layout.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-table-layout.obj `if test -f 'test-table-layout.c'; then $(CYGPATH_W) 'test-table-layout.c'; else $(CYGPATH_W) '$(srcdir)/test-table-layout.c'; fi`
test_interactive-test-path-constraint.o: test-path-constraint.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-path-constraint.o -MD -MP -MF $(DEPDIR)/test_interactive-test-path-constraint.Tpo -c -o test_interactive-test-path-constraint.o `test -f 'test-path-constraint.c' || echo '$(srcdir)/'`test-path-constraint.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-path-constraint.Tpo $(DEPDIR)/test_interactive-test-path-constraint.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-path-constraint.c' object='test_interactive-test-path-constraint.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-path-constraint.o `test -f 'test-path-constraint.c' || echo '$(srcdir)/'`test-path-constraint.c
test_interactive-test-path-constraint.obj: test-path-constraint.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-path-constraint.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-path-constraint.Tpo -c -o test_interactive-test-path-constraint.obj `if test -f 'test-path-constraint.c'; then $(CYGPATH_W) 'test-path-constraint.c'; else $(CYGPATH_W) '$(srcdir)/test-path-constraint.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-path-constraint.Tpo $(DEPDIR)/test_interactive-test-path-constraint.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-path-constraint.c' object='test_interactive-test-path-constraint.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-path-constraint.obj `if test -f 'test-path-constraint.c'; then $(CYGPATH_W) 'test-path-constraint.c'; else $(CYGPATH_W) '$(srcdir)/test-path-constraint.c'; fi`
test_interactive-test-state-script.o: test-state-script.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-state-script.o -MD -MP -MF $(DEPDIR)/test_interactive-test-state-script.Tpo -c -o test_interactive-test-state-script.o `test -f 'test-state-script.c' || echo '$(srcdir)/'`test-state-script.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-state-script.Tpo $(DEPDIR)/test_interactive-test-state-script.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-state-script.c' object='test_interactive-test-state-script.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-state-script.o `test -f 'test-state-script.c' || echo '$(srcdir)/'`test-state-script.c
test_interactive-test-state-script.obj: test-state-script.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-state-script.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-state-script.Tpo -c -o test_interactive-test-state-script.obj `if test -f 'test-state-script.c'; then $(CYGPATH_W) 'test-state-script.c'; else $(CYGPATH_W) '$(srcdir)/test-state-script.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-state-script.Tpo $(DEPDIR)/test_interactive-test-state-script.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-state-script.c' object='test_interactive-test-state-script.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-state-script.obj `if test -f 'test-state-script.c'; then $(CYGPATH_W) 'test-state-script.c'; else $(CYGPATH_W) '$(srcdir)/test-state-script.c'; fi`
test_interactive-test-devices.o: test-devices.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-devices.o -MD -MP -MF $(DEPDIR)/test_interactive-test-devices.Tpo -c -o test_interactive-test-devices.o `test -f 'test-devices.c' || echo '$(srcdir)/'`test-devices.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-devices.Tpo $(DEPDIR)/test_interactive-test-devices.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-devices.c' object='test_interactive-test-devices.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-devices.o `test -f 'test-devices.c' || echo '$(srcdir)/'`test-devices.c
test_interactive-test-devices.obj: test-devices.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-devices.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-devices.Tpo -c -o test_interactive-test-devices.obj `if test -f 'test-devices.c'; then $(CYGPATH_W) 'test-devices.c'; else $(CYGPATH_W) '$(srcdir)/test-devices.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-devices.Tpo $(DEPDIR)/test_interactive-test-devices.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-devices.c' object='test_interactive-test-devices.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-devices.obj `if test -f 'test-devices.c'; then $(CYGPATH_W) 'test-devices.c'; else $(CYGPATH_W) '$(srcdir)/test-devices.c'; fi`
test_interactive-test-content.o: test-content.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-content.o -MD -MP -MF $(DEPDIR)/test_interactive-test-content.Tpo -c -o test_interactive-test-content.o `test -f 'test-content.c' || echo '$(srcdir)/'`test-content.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-content.Tpo $(DEPDIR)/test_interactive-test-content.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-content.c' object='test_interactive-test-content.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-content.o `test -f 'test-content.c' || echo '$(srcdir)/'`test-content.c
test_interactive-test-content.obj: test-content.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-content.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-content.Tpo -c -o test_interactive-test-content.obj `if test -f 'test-content.c'; then $(CYGPATH_W) 'test-content.c'; else $(CYGPATH_W) '$(srcdir)/test-content.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-content.Tpo $(DEPDIR)/test_interactive-test-content.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-content.c' object='test_interactive-test-content.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-content.obj `if test -f 'test-content.c'; then $(CYGPATH_W) 'test-content.c'; else $(CYGPATH_W) '$(srcdir)/test-content.c'; fi`
test_interactive-test-keyframe-transition.o: test-keyframe-transition.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-keyframe-transition.o -MD -MP -MF $(DEPDIR)/test_interactive-test-keyframe-transition.Tpo -c -o test_interactive-test-keyframe-transition.o `test -f 'test-keyframe-transition.c' || echo '$(srcdir)/'`test-keyframe-transition.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-keyframe-transition.Tpo $(DEPDIR)/test_interactive-test-keyframe-transition.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-keyframe-transition.c' object='test_interactive-test-keyframe-transition.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-keyframe-transition.o `test -f 'test-keyframe-transition.c' || echo '$(srcdir)/'`test-keyframe-transition.c
test_interactive-test-keyframe-transition.obj: test-keyframe-transition.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-keyframe-transition.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-keyframe-transition.Tpo -c -o test_interactive-test-keyframe-transition.obj `if test -f 'test-keyframe-transition.c'; then $(CYGPATH_W) 'test-keyframe-transition.c'; else $(CYGPATH_W) '$(srcdir)/test-keyframe-transition.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-keyframe-transition.Tpo $(DEPDIR)/test_interactive-test-keyframe-transition.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-keyframe-transition.c' object='test_interactive-test-keyframe-transition.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-keyframe-transition.obj `if test -f 'test-keyframe-transition.c'; then $(CYGPATH_W) 'test-keyframe-transition.c'; else $(CYGPATH_W) '$(srcdir)/test-keyframe-transition.c'; fi`
test_interactive-test-bind-constraint.o: test-bind-constraint.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-bind-constraint.o -MD -MP -MF $(DEPDIR)/test_interactive-test-bind-constraint.Tpo -c -o test_interactive-test-bind-constraint.o `test -f 'test-bind-constraint.c' || echo '$(srcdir)/'`test-bind-constraint.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-bind-constraint.Tpo $(DEPDIR)/test_interactive-test-bind-constraint.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-bind-constraint.c' object='test_interactive-test-bind-constraint.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-bind-constraint.o `test -f 'test-bind-constraint.c' || echo '$(srcdir)/'`test-bind-constraint.c
test_interactive-test-bind-constraint.obj: test-bind-constraint.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-bind-constraint.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-bind-constraint.Tpo -c -o test_interactive-test-bind-constraint.obj `if test -f 'test-bind-constraint.c'; then $(CYGPATH_W) 'test-bind-constraint.c'; else $(CYGPATH_W) '$(srcdir)/test-bind-constraint.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-bind-constraint.Tpo $(DEPDIR)/test_interactive-test-bind-constraint.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-bind-constraint.c' object='test_interactive-test-bind-constraint.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-bind-constraint.obj `if test -f 'test-bind-constraint.c'; then $(CYGPATH_W) 'test-bind-constraint.c'; else $(CYGPATH_W) '$(srcdir)/test-bind-constraint.c'; fi`
test_interactive-test-touch-events.o: test-touch-events.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-touch-events.o -MD -MP -MF $(DEPDIR)/test_interactive-test-touch-events.Tpo -c -o test_interactive-test-touch-events.o `test -f 'test-touch-events.c' || echo '$(srcdir)/'`test-touch-events.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-touch-events.Tpo $(DEPDIR)/test_interactive-test-touch-events.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-touch-events.c' object='test_interactive-test-touch-events.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-touch-events.o `test -f 'test-touch-events.c' || echo '$(srcdir)/'`test-touch-events.c
test_interactive-test-touch-events.obj: test-touch-events.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-touch-events.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-touch-events.Tpo -c -o test_interactive-test-touch-events.obj `if test -f 'test-touch-events.c'; then $(CYGPATH_W) 'test-touch-events.c'; else $(CYGPATH_W) '$(srcdir)/test-touch-events.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-touch-events.Tpo $(DEPDIR)/test_interactive-test-touch-events.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-touch-events.c' object='test_interactive-test-touch-events.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-touch-events.obj `if test -f 'test-touch-events.c'; then $(CYGPATH_W) 'test-touch-events.c'; else $(CYGPATH_W) '$(srcdir)/test-touch-events.c'; fi`
test_interactive-test-rotate-zoom.o: test-rotate-zoom.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-rotate-zoom.o -MD -MP -MF $(DEPDIR)/test_interactive-test-rotate-zoom.Tpo -c -o test_interactive-test-rotate-zoom.o `test -f 'test-rotate-zoom.c' || echo '$(srcdir)/'`test-rotate-zoom.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-rotate-zoom.Tpo $(DEPDIR)/test_interactive-test-rotate-zoom.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-rotate-zoom.c' object='test_interactive-test-rotate-zoom.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-rotate-zoom.o `test -f 'test-rotate-zoom.c' || echo '$(srcdir)/'`test-rotate-zoom.c
test_interactive-test-rotate-zoom.obj: test-rotate-zoom.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-rotate-zoom.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-rotate-zoom.Tpo -c -o test_interactive-test-rotate-zoom.obj `if test -f 'test-rotate-zoom.c'; then $(CYGPATH_W) 'test-rotate-zoom.c'; else $(CYGPATH_W) '$(srcdir)/test-rotate-zoom.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-rotate-zoom.Tpo $(DEPDIR)/test_interactive-test-rotate-zoom.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-rotate-zoom.c' object='test_interactive-test-rotate-zoom.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-rotate-zoom.obj `if test -f 'test-rotate-zoom.c'; then $(CYGPATH_W) 'test-rotate-zoom.c'; else $(CYGPATH_W) '$(srcdir)/test-rotate-zoom.c'; fi`
test_interactive-test-pixmap.o: test-pixmap.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-pixmap.o -MD -MP -MF $(DEPDIR)/test_interactive-test-pixmap.Tpo -c -o test_interactive-test-pixmap.o `test -f 'test-pixmap.c' || echo '$(srcdir)/'`test-pixmap.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-pixmap.Tpo $(DEPDIR)/test_interactive-test-pixmap.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-pixmap.c' object='test_interactive-test-pixmap.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-pixmap.o `test -f 'test-pixmap.c' || echo '$(srcdir)/'`test-pixmap.c
test_interactive-test-pixmap.obj: test-pixmap.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-pixmap.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-pixmap.Tpo -c -o test_interactive-test-pixmap.obj `if test -f 'test-pixmap.c'; then $(CYGPATH_W) 'test-pixmap.c'; else $(CYGPATH_W) '$(srcdir)/test-pixmap.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-pixmap.Tpo $(DEPDIR)/test_interactive-test-pixmap.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-pixmap.c' object='test_interactive-test-pixmap.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-pixmap.obj `if test -f 'test-pixmap.c'; then $(CYGPATH_W) 'test-pixmap.c'; else $(CYGPATH_W) '$(srcdir)/test-pixmap.c'; fi`
test_interactive-test-image.o: test-image.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-image.o -MD -MP -MF $(DEPDIR)/test_interactive-test-image.Tpo -c -o test_interactive-test-image.o `test -f 'test-image.c' || echo '$(srcdir)/'`test-image.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-image.Tpo $(DEPDIR)/test_interactive-test-image.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-image.c' object='test_interactive-test-image.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-image.o `test -f 'test-image.c' || echo '$(srcdir)/'`test-image.c
test_interactive-test-image.obj: test-image.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -MT test_interactive-test-image.obj -MD -MP -MF $(DEPDIR)/test_interactive-test-image.Tpo -c -o test_interactive-test-image.obj `if test -f 'test-image.c'; then $(CYGPATH_W) 'test-image.c'; else $(CYGPATH_W) '$(srcdir)/test-image.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interactive-test-image.Tpo $(DEPDIR)/test_interactive-test-image.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-image.c' object='test_interactive-test-image.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_interactive_CPPFLAGS) $(CPPFLAGS) $(test_interactive_CFLAGS) $(CFLAGS) -c -o test_interactive-test-image.obj `if test -f 'test-image.c'; then $(CYGPATH_W) 'test-image.c'; else $(CYGPATH_W) '$(srcdir)/test-image.c'; fi`
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
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) $(check_SCRIPTS)
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile
installdirs:
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: 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:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-checkPROGRAMS clean-generic clean-libtool clean-local \
mostlyclean-am
distclean: distclean-am
-rm -f ./$(DEPDIR)/test_interactive-test-actors.Po
-rm -f ./$(DEPDIR)/test_interactive-test-animation.Po
-rm -f ./$(DEPDIR)/test_interactive-test-animator.Po
-rm -f ./$(DEPDIR)/test_interactive-test-bind-constraint.Po
-rm -f ./$(DEPDIR)/test_interactive-test-binding-pool.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cairo-clock.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cairo-flowers.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-multitexture.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-offscreen.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-point-sprites.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-shader-glsl.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-convert.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-foreign.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-polygon.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-tile.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Po
-rm -f ./$(DEPDIR)/test_interactive-test-content.Po
-rm -f ./$(DEPDIR)/test_interactive-test-devices.Po
-rm -f ./$(DEPDIR)/test_interactive-test-easing.Po
-rm -f ./$(DEPDIR)/test_interactive-test-events.Po
-rm -f ./$(DEPDIR)/test_interactive-test-fbo.Po
-rm -f ./$(DEPDIR)/test_interactive-test-grab.Po
-rm -f ./$(DEPDIR)/test_interactive-test-image.Po
-rm -f ./$(DEPDIR)/test_interactive-test-keyframe-transition.Po
-rm -f ./$(DEPDIR)/test_interactive-test-layout.Po
-rm -f ./$(DEPDIR)/test_interactive-test-main.Po
-rm -f ./$(DEPDIR)/test_interactive-test-multistage.Po
-rm -f ./$(DEPDIR)/test_interactive-test-paint-wrapper.Po
-rm -f ./$(DEPDIR)/test_interactive-test-path-constraint.Po
-rm -f ./$(DEPDIR)/test_interactive-test-pixmap.Po
-rm -f ./$(DEPDIR)/test_interactive-test-rotate-zoom.Po
-rm -f ./$(DEPDIR)/test_interactive-test-scale.Po
-rm -f ./$(DEPDIR)/test_interactive-test-script.Po
-rm -f ./$(DEPDIR)/test_interactive-test-scrolling.Po
-rm -f ./$(DEPDIR)/test_interactive-test-shader-effects.Po
-rm -f ./$(DEPDIR)/test_interactive-test-stage-read-pixels.Po
-rm -f ./$(DEPDIR)/test_interactive-test-stage-sizing.Po
-rm -f ./$(DEPDIR)/test_interactive-test-state-animator.Po
-rm -f ./$(DEPDIR)/test_interactive-test-state-script.Po
-rm -f ./$(DEPDIR)/test_interactive-test-state.Po
-rm -f ./$(DEPDIR)/test_interactive-test-swipe-action.Po
-rm -f ./$(DEPDIR)/test_interactive-test-table-layout.Po
-rm -f ./$(DEPDIR)/test_interactive-test-text-field.Po
-rm -f ./$(DEPDIR)/test_interactive-test-text.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-async.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-material.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-quality.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-slicing.Po
-rm -f ./$(DEPDIR)/test_interactive-test-touch-events.Po
-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)/test_interactive-test-actors.Po
-rm -f ./$(DEPDIR)/test_interactive-test-animation.Po
-rm -f ./$(DEPDIR)/test_interactive-test-animator.Po
-rm -f ./$(DEPDIR)/test_interactive-test-bind-constraint.Po
-rm -f ./$(DEPDIR)/test_interactive-test-binding-pool.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cairo-clock.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cairo-flowers.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-multitexture.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-offscreen.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-point-sprites.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-shader-arbfp.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-shader-glsl.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-convert.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-foreign.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-polygon.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-tex-tile.Po
-rm -f ./$(DEPDIR)/test_interactive-test-cogl-vertex-buffer.Po
-rm -f ./$(DEPDIR)/test_interactive-test-content.Po
-rm -f ./$(DEPDIR)/test_interactive-test-devices.Po
-rm -f ./$(DEPDIR)/test_interactive-test-easing.Po
-rm -f ./$(DEPDIR)/test_interactive-test-events.Po
-rm -f ./$(DEPDIR)/test_interactive-test-fbo.Po
-rm -f ./$(DEPDIR)/test_interactive-test-grab.Po
-rm -f ./$(DEPDIR)/test_interactive-test-image.Po
-rm -f ./$(DEPDIR)/test_interactive-test-keyframe-transition.Po
-rm -f ./$(DEPDIR)/test_interactive-test-layout.Po
-rm -f ./$(DEPDIR)/test_interactive-test-main.Po
-rm -f ./$(DEPDIR)/test_interactive-test-multistage.Po
-rm -f ./$(DEPDIR)/test_interactive-test-paint-wrapper.Po
-rm -f ./$(DEPDIR)/test_interactive-test-path-constraint.Po
-rm -f ./$(DEPDIR)/test_interactive-test-pixmap.Po
-rm -f ./$(DEPDIR)/test_interactive-test-rotate-zoom.Po
-rm -f ./$(DEPDIR)/test_interactive-test-scale.Po
-rm -f ./$(DEPDIR)/test_interactive-test-script.Po
-rm -f ./$(DEPDIR)/test_interactive-test-scrolling.Po
-rm -f ./$(DEPDIR)/test_interactive-test-shader-effects.Po
-rm -f ./$(DEPDIR)/test_interactive-test-stage-read-pixels.Po
-rm -f ./$(DEPDIR)/test_interactive-test-stage-sizing.Po
-rm -f ./$(DEPDIR)/test_interactive-test-state-animator.Po
-rm -f ./$(DEPDIR)/test_interactive-test-state-script.Po
-rm -f ./$(DEPDIR)/test_interactive-test-state.Po
-rm -f ./$(DEPDIR)/test_interactive-test-swipe-action.Po
-rm -f ./$(DEPDIR)/test_interactive-test-table-layout.Po
-rm -f ./$(DEPDIR)/test_interactive-test-text-field.Po
-rm -f ./$(DEPDIR)/test_interactive-test-text.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-async.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-material.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-quality.Po
-rm -f ./$(DEPDIR)/test_interactive-test-texture-slicing.Po
-rm -f ./$(DEPDIR)/test_interactive-test-touch-events.Po
-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 check-am install install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-checkPROGRAMS clean-generic clean-libtool clean-local \
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
# For convenience, this provides a way to easily run individual unit tests:
wrappers: stamp-test-interactive
@true
stamp-test-interactive: Makefile
@wrapper=$(abs_builddir)/wrapper.sh ; \
chmod +x $$wrapper && \
for i in $(UNIT_TESTS); \
do \
test_bin=$${i%*.c} ; \
echo " GEN $$test_bin" ; \
( echo "#!/bin/sh" ; \
echo "$$wrapper $$test_bin \$$@" \
) > $$test_bin$(SHEXT) ; \
chmod +x $$test_bin$(SHEXT) ; \
done \
&& echo timestamp > $(@F)
test-unit-names.h: stamp-test-unit-names
@true
stamp-test-unit-names: Makefile
@( echo "/* ** This file is autogenerated. Do not edit. ** */" ; \
echo "" ; \
echo "const char *test_unit_names[] = {" ) > test-unit-names.h ; \
for i in $(UNIT_TESTS); \
do \
test_bin=$${i%*.c} ; \
echo " \"$$test_bin\"," >> test-unit-names.h ; \
done \
&& echo "};" >> test-unit-names.h \
&& echo timestamp > $(@F)
clean-wrappers:
@for i in $(UNIT_TESTS); \
do \
test_bin=$${i%*.c} ; \
echo " RM $$test_bin"; \
rm -f $$test_bin$(SHEXT); \
done \
&& rm -f stamp-test-unit-names \
&& rm -f stamp-test-interactive
.PHONY: wrappers clean-wrappers
clean-local: clean-wrappers
# 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:
|