summaryrefslogtreecommitdiff
path: root/src/Makefile.in
blob: 8ba1f1983771cbf21951189ecfab9d86270551a7 (plain)
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
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  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@
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@
bin_PROGRAMS = mate-power-manager$(EXEEXT) \
	mate-power-preferences$(EXEEXT) mate-power-statistics$(EXEEXT) \
	$(am__EXEEXT_1)
sbin_PROGRAMS = mate-power-backlight-helper$(EXEEXT) $(am__EXEEXT_1)
check_PROGRAMS = mate-power-self-test$(EXEEXT)
TESTS = mate-power-self-test$(EXEEXT)
subdir = src
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/mate-doc-utils.m4 \
	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
LIBRARIES = $(noinst_LIBRARIES)
ARFLAGS = cru
AM_V_AR = $(am__v_AR_$(V))
am__v_AR_ = $(am__v_AR_$(AM_DEFAULT_VERBOSITY))
am__v_AR_0 = @echo "  AR    " $@;
AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @
libgpmshared_a_AR = $(AR) $(ARFLAGS)
libgpmshared_a_LIBADD =
am__objects_1 =
am_libgpmshared_a_OBJECTS = egg-color.$(OBJEXT) egg-debug.$(OBJEXT) \
	egg-unique.$(OBJEXT) egg-precision.$(OBJEXT) \
	egg-array-float.$(OBJEXT) egg-idletime.$(OBJEXT) \
	egg-dbus-proxy.$(OBJEXT) egg-dbus-monitor.$(OBJEXT) \
	egg-discrete.$(OBJEXT) egg-string.$(OBJEXT) \
	egg-console-kit.$(OBJEXT) gpm-common.$(OBJEXT) \
	gpm-marshal.$(OBJEXT) gpm-upower.$(OBJEXT) $(am__objects_1)
libgpmshared_a_OBJECTS = $(am_libgpmshared_a_OBJECTS)
am__EXEEXT_1 =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)"
PROGRAMS = $(bin_PROGRAMS) $(sbin_PROGRAMS)
am_mate_power_backlight_helper_OBJECTS =  \
	mate_power_backlight_helper-gpm-backlight-helper.$(OBJEXT) \
	$(am__objects_1)
mate_power_backlight_helper_OBJECTS =  \
	$(am_mate_power_backlight_helper_OBJECTS)
am__DEPENDENCIES_1 =
mate_power_backlight_helper_DEPENDENCIES = libgpmshared.a \
	$(am__DEPENDENCIES_1)
AM_V_lt = $(am__v_lt_$(V))
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
am__v_lt_0 = --silent
mate_power_backlight_helper_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(mate_power_backlight_helper_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
	$(LDFLAGS) -o $@
am_mate_power_manager_OBJECTS = mate_power_manager-gpm-dpms.$(OBJEXT) \
	mate_power_manager-gpm-phone.$(OBJEXT) \
	mate_power_manager-gpm-backlight.$(OBJEXT) \
	mate_power_manager-gpm-prefs-server.$(OBJEXT) \
	mate_power_manager-gpm-idle.$(OBJEXT) \
	mate_power_manager-gpm-load.$(OBJEXT) \
	mate_power_manager-gpm-disks.$(OBJEXT) \
	mate_power_manager-gpm-control.$(OBJEXT) \
	mate_power_manager-gpm-button.$(OBJEXT) \
	mate_power_manager-gpm-brightness.$(OBJEXT) \
	mate_power_manager-gpm-main.$(OBJEXT) \
	mate_power_manager-gpm-manager.$(OBJEXT) \
	mate_power_manager-gpm-tray-icon.$(OBJEXT) \
	mate_power_manager-gpm-screensaver.$(OBJEXT) \
	mate_power_manager-gpm-session.$(OBJEXT) \
	mate_power_manager-gpm-networkmanager.$(OBJEXT) \
	mate_power_manager-gsd-media-keys-window.$(OBJEXT) \
	mate_power_manager-gpm-engine.$(OBJEXT) $(am__objects_1)
mate_power_manager_OBJECTS = $(am_mate_power_manager_OBJECTS)
mate_power_manager_DEPENDENCIES = libgpmshared.a $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
mate_power_manager_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(mate_power_manager_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
	$(LDFLAGS) -o $@
am_mate_power_preferences_OBJECTS =  \
	mate_power_preferences-gpm-prefs.$(OBJEXT) \
	mate_power_preferences-gpm-prefs-core.$(OBJEXT) \
	$(am__objects_1)
mate_power_preferences_OBJECTS = $(am_mate_power_preferences_OBJECTS)
mate_power_preferences_DEPENDENCIES = libgpmshared.a \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
mate_power_preferences_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(mate_power_preferences_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
	$(LDFLAGS) -o $@
am_mate_power_self_test_OBJECTS =  \
	mate_power_self_test-gpm-self-test.$(OBJEXT) \
	mate_power_self_test-egg-color.$(OBJEXT) \
	mate_power_self_test-egg-test.$(OBJEXT) \
	mate_power_self_test-egg-debug.$(OBJEXT) \
	mate_power_self_test-egg-dbus-monitor.$(OBJEXT) \
	mate_power_self_test-egg-dbus-proxy.$(OBJEXT) \
	mate_power_self_test-egg-precision.$(OBJEXT) \
	mate_power_self_test-egg-idletime.$(OBJEXT) \
	mate_power_self_test-egg-discrete.$(OBJEXT) \
	mate_power_self_test-egg-array-float.$(OBJEXT) \
	mate_power_self_test-egg-console-kit.$(OBJEXT) \
	mate_power_self_test-gpm-prefs-server.$(OBJEXT) \
	mate_power_self_test-gpm-control.$(OBJEXT) \
	mate_power_self_test-gpm-networkmanager.$(OBJEXT) \
	mate_power_self_test-gpm-dpms.$(OBJEXT) \
	mate_power_self_test-gpm-button.$(OBJEXT) \
	mate_power_self_test-gpm-screensaver.$(OBJEXT) \
	mate_power_self_test-gpm-engine.$(OBJEXT) \
	mate_power_self_test-gpm-phone.$(OBJEXT) \
	mate_power_self_test-gpm-idle.$(OBJEXT) \
	mate_power_self_test-gpm-session.$(OBJEXT) \
	mate_power_self_test-gpm-load.$(OBJEXT) \
	mate_power_self_test-gpm-marshal.$(OBJEXT) \
	mate_power_self_test-gpm-common.$(OBJEXT) \
	mate_power_self_test-gpm-upower.$(OBJEXT) $(am__objects_1)
mate_power_self_test_OBJECTS = $(am_mate_power_self_test_OBJECTS)
mate_power_self_test_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
mate_power_self_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(mate_power_self_test_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
	$(LDFLAGS) -o $@
am_mate_power_statistics_OBJECTS =  \
	mate_power_statistics-gpm-statistics.$(OBJEXT) \
	mate_power_statistics-gpm-point-obj.$(OBJEXT) \
	mate_power_statistics-gpm-graph-widget.$(OBJEXT) \
	$(am__objects_1)
mate_power_statistics_OBJECTS = $(am_mate_power_statistics_OBJECTS)
mate_power_statistics_DEPENDENCIES = libgpmshared.a \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
mate_power_statistics_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(mate_power_statistics_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
	$(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
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_$(V))
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
am__v_CC_0 = @echo "  CC    " $@;
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_$(V))
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
am__v_CCLD_0 = @echo "  CCLD  " $@;
AM_V_GEN = $(am__v_GEN_$(V))
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
am__v_GEN_0 = @echo "  GEN   " $@;
SOURCES = $(libgpmshared_a_SOURCES) \
	$(mate_power_backlight_helper_SOURCES) \
	$(mate_power_manager_SOURCES) \
	$(mate_power_preferences_SOURCES) \
	$(mate_power_self_test_SOURCES) \
	$(mate_power_statistics_SOURCES)
DIST_SOURCES = $(libgpmshared_a_SOURCES) \
	$(mate_power_backlight_helper_SOURCES) \
	$(mate_power_manager_SOURCES) \
	$(mate_power_preferences_SOURCES) \
	$(mate_power_self_test_SOURCES) \
	$(mate_power_statistics_SOURCES)
ETAGS = etags
CTAGS = ctags
am__tty_colors = \
red=; grn=; lgn=; blu=; std=
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALL_LINGUAS = @ALL_LINGUAS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BINDIR = @BINDIR@
CANBERRA_CFLAGS = @CANBERRA_CFLAGS@
CANBERRA_LIBS = @CANBERRA_LIBS@
CATALOGS = @CATALOGS@
CATOBJEXT = @CATOBJEXT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DATADIR = @DATADIR@
DATADIRNAME = @DATADIRNAME@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DBUS_SERVICES_DIR = @DBUS_SERVICES_DIR@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
DOCBOOK2MAN = @DOCBOOK2MAN@
DOCDIR = @DOCDIR@
DOC_USER_FORMATS = @DOC_USER_FORMATS@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GDK_CFLAGS = @GDK_CFLAGS@
GDK_LIBS = @GDK_LIBS@
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
GLIB_LIBS = @GLIB_LIBS@
GMOFILES = @GMOFILES@
GMSGFMT = @GMSGFMT@
GPM_EXTRA_LIBS = @GPM_EXTRA_LIBS@
GREP = @GREP@
HELP_DIR = @HELP_DIR@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLLIBS = @INTLLIBS@
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
INTLTOOL_MERGE = @INTLTOOL_MERGE@
INTLTOOL_PERL = @INTLTOOL_PERL@
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBMATENOTIFY_CFLAGS = @LIBMATENOTIFY_CFLAGS@
LIBMATENOTIFY_LIBS = @LIBMATENOTIFY_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MATECONFTOOL = @MATECONFTOOL@
MATECONF_SCHEMA_CONFIG_SOURCE = @MATECONF_SCHEMA_CONFIG_SOURCE@
MATECONF_SCHEMA_FILE_DIR = @MATECONF_SCHEMA_FILE_DIR@
MATE_CFLAGS = @MATE_CFLAGS@
MATE_LIBS = @MATE_LIBS@
MKDIR_P = @MKDIR_P@
MKINSTALLDIRS = @MKINSTALLDIRS@
MSGFMT = @MSGFMT@
MSGFMT_OPTS = @MSGFMT_OPTS@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OMF_DIR = @OMF_DIR@
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@
PANEL_CFLAGS = @PANEL_CFLAGS@
PANEL_LIBS = @PANEL_LIBS@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POFILES = @POFILES@
POSUB = @POSUB@
PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
RANLIB = @RANLIB@
SBINDIR = @SBINDIR@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
SYSCONFDIR = @SYSCONFDIR@
UNIQUE_CFLAGS = @UNIQUE_CFLAGS@
UNIQUE_LIBS = @UNIQUE_LIBS@
UPOWER_CFLAGS = @UPOWER_CFLAGS@
UPOWER_LIBS = @UPOWER_LIBS@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
WARNINGFLAGS = @WARNINGFLAGS@
WARN_CFLAGS = @WARN_CFLAGS@
X11_CFLAGS = @X11_CFLAGS@
X11_LIBS = @X11_LIBS@
XGETTEXT = @XGETTEXT@
XMLTO = @XMLTO@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
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@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
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@
AUTOMAKE_OPTIONS = 1.7
NULL = 
EXTRA_DIST = \
	org.mate.PowerManager.xml			\
	org.mate.PowerManager.Backlight.xml		\
	gpm-marshal.list				\
	$(NULL)

INCLUDES = \
	$(GLIB_CFLAGS)					\
	$(DBUS_CFLAGS)					\
	$(MATE_CFLAGS)					\
	$(UNIQUE_CFLAGS)				\
	$(X11_CFLAGS)					\
	$(LIBMATENOTIFY_CFLAGS)				\
	$(CANBERRA_CFLAGS)				\
	$(GSTREAMER_CFLAGS)				\
	-DI_KNOW_THE_DEVICEKIT_POWER_API_IS_SUBJECT_TO_CHANGE \
	$(UPOWER_CFLAGS)				\
	-DBINDIR=\"$(bindir)\"			 	\
	-DSBINDIR=\"$(sbindir)\"			 \
	-DMATELOCALEDIR=\""$(datadir)/locale"\"	\
	-DDATADIR=\"$(datadir)\"			\
	-DPREFIX=\""$(prefix)"\" 			\
	-DSYSCONFDIR=\""$(sysconfdir)"\" 		\
	-DLIBDIR=\""$(libdir)"\" 			\
	-DVERSION="\"$(VERSION)\"" 			\
	-DGPM_DATA=\"$(pkgdatadir)\"			\
	-DGTKBUILDERDIR=\"$(pkgdatadir)\"		\
	-DUP_DISABLE_DEPRECATED			\
	-DEGG_LOG_FILE=\""/tmp/gpm.log"\"		\
	-DEGG_VERBOSE="\"GPM_VERBOSE\""			\
	-DEGG_LOGGING="\"GPM_LOGGING\""			\
	-DEGG_CONSOLE="\"GPM_CONSOLE\""			\
	-I$(top_srcdir)					\
	$(NULL)

noinst_LIBRARIES = libgpmshared.a
libgpmshared_a_SOURCES = \
	egg-color.c					\
	egg-color.h					\
	egg-debug.h					\
	egg-debug.c					\
	egg-unique.h					\
	egg-unique.c					\
	egg-precision.h					\
	egg-precision.c					\
	egg-array-float.c				\
	egg-array-float.h				\
	egg-idletime.h					\
	egg-idletime.c					\
	egg-dbus-proxy.h				\
	egg-dbus-proxy.c				\
	egg-dbus-monitor.h				\
	egg-dbus-monitor.c				\
	egg-discrete.h					\
	egg-discrete.c					\
	egg-string.h					\
	egg-string.c					\
	egg-console-kit.h				\
	egg-console-kit.c				\
	gpm-common.h					\
	gpm-common.c					\
	gpm-marshal.h					\
	gpm-marshal.c					\
	gpm-upower.c					\
	gpm-upower.h					\
	$(NULL)

mate_power_backlight_helper_SOURCES = \
	gpm-backlight-helper.c				\
	$(NULL)

mate_power_backlight_helper_LDADD = \
	libgpmshared.a					\
	$(GLIB_LIBS)					\
	-lm

mate_power_backlight_helper_CFLAGS = \
	$(WARNINGFLAGS)					\
	$(NULL)

mate_power_statistics_SOURCES = \
	gpm-statistics.c				\
	gpm-point-obj.c					\
	gpm-point-obj.h					\
	gpm-graph-widget.h				\
	gpm-graph-widget.c				\
	$(NULL)

mate_power_statistics_LDADD = \
	libgpmshared.a					\
	$(GLIB_LIBS)					\
	$(X11_LIBS)					\
	$(UPOWER_LIBS)					\
	$(MATE_LIBS)					\
	$(UNIQUE_LIBS)					\
	$(DBUS_LIBS)					\
	-lm

mate_power_statistics_CFLAGS = \
	$(WARNINGFLAGS)					\
	$(NULL)

mate_power_preferences_SOURCES = \
	gpm-prefs.c					\
	gpm-prefs-core.h				\
	gpm-prefs-core.c				\
	$(NULL)

mate_power_preferences_LDADD = \
	libgpmshared.a					\
	$(GLIB_LIBS)					\
	$(X11_LIBS)					\
	$(MATE_LIBS)					\
	$(DBUS_LIBS)					\
	$(UNIQUE_LIBS)					\
	$(GPM_EXTRA_LIBS)				\
	$(UPOWER_LIBS)					\
	-lm

mate_power_preferences_CFLAGS = \
	$(WARNINGFLAGS)					\
	$(NULL)

mate_power_manager_SOURCES = \
	gpm-dpms.h					\
	gpm-dpms.c					\
	gpm-phone.h					\
	gpm-phone.c					\
	gpm-backlight.h					\
	gpm-backlight.c					\
	gpm-prefs-server.h				\
	gpm-prefs-server.c				\
	gpm-idle.h					\
	gpm-idle.c					\
	gpm-load.h					\
	gpm-load.c					\
	gpm-disks.h					\
	gpm-disks.c					\
	gpm-control.h					\
	gpm-control.c					\
	gpm-button.h					\
	gpm-button.c					\
	gpm-brightness.h				\
	gpm-brightness.c				\
	gpm-main.c					\
	gpm-manager.h					\
	gpm-manager.c					\
	gpm-tray-icon.h					\
	gpm-tray-icon.c					\
	gpm-screensaver.h				\
	gpm-screensaver.c				\
	gpm-session.h					\
	gpm-session.c					\
	gpm-networkmanager.h				\
	gpm-networkmanager.c				\
	gpm-stock-icons.h				\
	gsd-media-keys-window.h				\
	gsd-media-keys-window.c				\
	gpm-engine.h					\
	gpm-engine.c					\
	$(NULL)

mate_power_manager_LDADD = \
	libgpmshared.a					\
	$(GLIB_LIBS)					\
	$(X11_LIBS)				\
	$(GSTREAMER_LIBS)				\
	$(MATE_LIBS)					\
	$(DBUS_LIBS)					\
	$(X11_LIBS)						\
	$(CANBERRA_LIBS)				\
	$(LIBMATENOTIFY_LIBS)				\
	$(GPM_EXTRA_LIBS)				\
	$(UPOWER_LIBS)					\
	-lm

mate_power_manager_CFLAGS = \
	$(WARNINGFLAGS)					\
	$(NULL)

mate_power_self_test_SOURCES = \
	gpm-self-test.c					\
	egg-color.h					\
	egg-color.c					\
	egg-test.h					\
	egg-test.c					\
	egg-debug.h					\
	egg-debug.c					\
	egg-dbus-monitor.h				\
	egg-dbus-monitor.c				\
	egg-dbus-proxy.h				\
	egg-dbus-proxy.c				\
	egg-precision.h					\
	egg-precision.c					\
	egg-idletime.h					\
	egg-idletime.c					\
	egg-discrete.h					\
	egg-discrete.c					\
	egg-array-float.h				\
	egg-array-float.c				\
	egg-console-kit.h				\
	egg-console-kit.c				\
	gpm-prefs-server.h				\
	gpm-prefs-server.c				\
	gpm-control.h					\
	gpm-control.c					\
	gpm-networkmanager.h				\
	gpm-networkmanager.c				\
	gpm-dpms.h					\
	gpm-dpms.c					\
	gpm-button.h					\
	gpm-button.c					\
	gpm-screensaver.h				\
	gpm-screensaver.c				\
	gpm-engine.h					\
	gpm-engine.c					\
	gpm-phone.h					\
	gpm-phone.c					\
	gpm-idle.h					\
	gpm-idle.c					\
	gpm-session.h					\
	gpm-session.c					\
	gpm-load.h					\
	gpm-load.c					\
	gpm-marshal.h					\
	gpm-marshal.c					\
	gpm-common.h					\
	gpm-common.c					\
	gpm-upower.h					\
	gpm-upower.c					\
	$(NULL)

mate_power_self_test_LDADD = \
	$(GLIB_LIBS)					\
	$(X11_LIBS)					\
	$(MATE_LIBS)					\
	$(GSTREAMER_LIBS)				\
	$(UPOWER_LIBS)					\
	$(DBUS_LIBS)					\
	$(X11_LIBS)						\
	$(LIBMATENOTIFY_LIBS)				\
	$(GPM_EXTRA_LIBS)				\
	-lm

mate_power_self_test_CFLAGS = -DEGG_TEST $(AM_CFLAGS) $(WARNINGFLAGS)
BUILT_SOURCES = \
	org.mate.PowerManager.h			\
	org.mate.PowerManager.Backlight.h		\
	gpm-marshal.c					\
	gpm-marshal.h					\
	$(NULL)

CLEANFILES = $(BUILT_SOURCES)
MAINTAINERCLEANFILES = \
	*~			      			\
	Makefile.in					\
	$(NULL)

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 src/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign src/Makefile
.PRECIOUS: 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__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
	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):

clean-noinstLIBRARIES:
	-test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
libgpmshared.a: $(libgpmshared_a_OBJECTS) $(libgpmshared_a_DEPENDENCIES) 
	$(AM_V_at)-rm -f libgpmshared.a
	$(AM_V_AR)$(libgpmshared_a_AR) libgpmshared.a $(libgpmshared_a_OBJECTS) $(libgpmshared_a_LIBADD)
	$(AM_V_at)$(RANLIB) libgpmshared.a
install-binPROGRAMS: $(bin_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
	for p in $$list; do echo "$$p $$p"; done | \
	sed 's/$(EXEEXT)$$//' | \
	while read p p1; do if test -f $$p || test -f $$p1; \
	  then echo "$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
	sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
	    else { print "f", $$3 "/" $$4, $$1; } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	    test -z "$$files" || { \
	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-binPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
	files=`for p in $$list; do echo "$$p"; done | \
	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
	      -e 's/$$/$(EXEEXT)/' `; \
	test -n "$$list" || exit 0; \
	echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(bindir)" && rm -f $$files

clean-binPROGRAMS:
	@list='$(bin_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

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
install-sbinPROGRAMS: $(sbin_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
	for p in $$list; do echo "$$p $$p"; done | \
	sed 's/$(EXEEXT)$$//' | \
	while read p p1; do if test -f $$p || test -f $$p1; \
	  then echo "$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
	sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
	    else { print "f", $$3 "/" $$4, $$1; } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	    test -z "$$files" || { \
	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-sbinPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
	files=`for p in $$list; do echo "$$p"; done | \
	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
	      -e 's/$$/$(EXEEXT)/' `; \
	test -n "$$list" || exit 0; \
	echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(sbindir)" && rm -f $$files

clean-sbinPROGRAMS:
	@list='$(sbin_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
mate-power-backlight-helper$(EXEEXT): $(mate_power_backlight_helper_OBJECTS) $(mate_power_backlight_helper_DEPENDENCIES) 
	@rm -f mate-power-backlight-helper$(EXEEXT)
	$(AM_V_CCLD)$(mate_power_backlight_helper_LINK) $(mate_power_backlight_helper_OBJECTS) $(mate_power_backlight_helper_LDADD) $(LIBS)
mate-power-manager$(EXEEXT): $(mate_power_manager_OBJECTS) $(mate_power_manager_DEPENDENCIES) 
	@rm -f mate-power-manager$(EXEEXT)
	$(AM_V_CCLD)$(mate_power_manager_LINK) $(mate_power_manager_OBJECTS) $(mate_power_manager_LDADD) $(LIBS)
mate-power-preferences$(EXEEXT): $(mate_power_preferences_OBJECTS) $(mate_power_preferences_DEPENDENCIES) 
	@rm -f mate-power-preferences$(EXEEXT)
	$(AM_V_CCLD)$(mate_power_preferences_LINK) $(mate_power_preferences_OBJECTS) $(mate_power_preferences_LDADD) $(LIBS)
mate-power-self-test$(EXEEXT): $(mate_power_self_test_OBJECTS) $(mate_power_self_test_DEPENDENCIES) 
	@rm -f mate-power-self-test$(EXEEXT)
	$(AM_V_CCLD)$(mate_power_self_test_LINK) $(mate_power_self_test_OBJECTS) $(mate_power_self_test_LDADD) $(LIBS)
mate-power-statistics$(EXEEXT): $(mate_power_statistics_OBJECTS) $(mate_power_statistics_DEPENDENCIES) 
	@rm -f mate-power-statistics$(EXEEXT)
	$(AM_V_CCLD)$(mate_power_statistics_LINK) $(mate_power_statistics_OBJECTS) $(mate_power_statistics_LDADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)

distclean-compile:
	-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-array-float.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-color.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-console-kit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-dbus-monitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-dbus-proxy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-debug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-discrete.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-idletime.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-precision.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-string.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/egg-unique.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gpm-common.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gpm-marshal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gpm-upower.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-backlight.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-brightness.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-button.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-control.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-disks.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-dpms.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-engine.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-idle.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-load.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-networkmanager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-phone.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-prefs-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-screensaver.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-session.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gpm-tray-icon.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_manager-gsd-media-keys-window.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_preferences-gpm-prefs-core.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_preferences-gpm-prefs.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-array-float.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-color.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-console-kit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-debug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-discrete.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-idletime.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-precision.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-egg-test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-button.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-common.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-control.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-dpms.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-engine.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-idle.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-load.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-marshal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-networkmanager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-phone.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-prefs-server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-screensaver.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-self-test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-session.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_self_test-gpm-upower.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_statistics-gpm-graph-widget.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_statistics-gpm-point-obj.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mate_power_statistics-gpm-statistics.Po@am__quote@

.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
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c $<

.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
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c `$(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
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<

mate_power_backlight_helper-gpm-backlight-helper.o: gpm-backlight-helper.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_backlight_helper_CFLAGS) $(CFLAGS) -MT mate_power_backlight_helper-gpm-backlight-helper.o -MD -MP -MF $(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Tpo -c -o mate_power_backlight_helper-gpm-backlight-helper.o `test -f 'gpm-backlight-helper.c' || echo '$(srcdir)/'`gpm-backlight-helper.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Tpo $(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-backlight-helper.c' object='mate_power_backlight_helper-gpm-backlight-helper.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_backlight_helper_CFLAGS) $(CFLAGS) -c -o mate_power_backlight_helper-gpm-backlight-helper.o `test -f 'gpm-backlight-helper.c' || echo '$(srcdir)/'`gpm-backlight-helper.c

mate_power_backlight_helper-gpm-backlight-helper.obj: gpm-backlight-helper.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_backlight_helper_CFLAGS) $(CFLAGS) -MT mate_power_backlight_helper-gpm-backlight-helper.obj -MD -MP -MF $(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Tpo -c -o mate_power_backlight_helper-gpm-backlight-helper.obj `if test -f 'gpm-backlight-helper.c'; then $(CYGPATH_W) 'gpm-backlight-helper.c'; else $(CYGPATH_W) '$(srcdir)/gpm-backlight-helper.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Tpo $(DEPDIR)/mate_power_backlight_helper-gpm-backlight-helper.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-backlight-helper.c' object='mate_power_backlight_helper-gpm-backlight-helper.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_backlight_helper_CFLAGS) $(CFLAGS) -c -o mate_power_backlight_helper-gpm-backlight-helper.obj `if test -f 'gpm-backlight-helper.c'; then $(CYGPATH_W) 'gpm-backlight-helper.c'; else $(CYGPATH_W) '$(srcdir)/gpm-backlight-helper.c'; fi`

mate_power_manager-gpm-dpms.o: gpm-dpms.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-dpms.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-dpms.Tpo -c -o mate_power_manager-gpm-dpms.o `test -f 'gpm-dpms.c' || echo '$(srcdir)/'`gpm-dpms.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-dpms.Tpo $(DEPDIR)/mate_power_manager-gpm-dpms.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-dpms.c' object='mate_power_manager-gpm-dpms.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-dpms.o `test -f 'gpm-dpms.c' || echo '$(srcdir)/'`gpm-dpms.c

mate_power_manager-gpm-dpms.obj: gpm-dpms.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-dpms.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-dpms.Tpo -c -o mate_power_manager-gpm-dpms.obj `if test -f 'gpm-dpms.c'; then $(CYGPATH_W) 'gpm-dpms.c'; else $(CYGPATH_W) '$(srcdir)/gpm-dpms.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-dpms.Tpo $(DEPDIR)/mate_power_manager-gpm-dpms.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-dpms.c' object='mate_power_manager-gpm-dpms.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-dpms.obj `if test -f 'gpm-dpms.c'; then $(CYGPATH_W) 'gpm-dpms.c'; else $(CYGPATH_W) '$(srcdir)/gpm-dpms.c'; fi`

mate_power_manager-gpm-phone.o: gpm-phone.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-phone.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-phone.Tpo -c -o mate_power_manager-gpm-phone.o `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-phone.Tpo $(DEPDIR)/mate_power_manager-gpm-phone.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-phone.c' object='mate_power_manager-gpm-phone.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-phone.o `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c

mate_power_manager-gpm-phone.obj: gpm-phone.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-phone.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-phone.Tpo -c -o mate_power_manager-gpm-phone.obj `if test -f 'gpm-phone.c'; then $(CYGPATH_W) 'gpm-phone.c'; else $(CYGPATH_W) '$(srcdir)/gpm-phone.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-phone.Tpo $(DEPDIR)/mate_power_manager-gpm-phone.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-phone.c' object='mate_power_manager-gpm-phone.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-phone.obj `if test -f 'gpm-phone.c'; then $(CYGPATH_W) 'gpm-phone.c'; else $(CYGPATH_W) '$(srcdir)/gpm-phone.c'; fi`

mate_power_manager-gpm-backlight.o: gpm-backlight.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-backlight.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-backlight.Tpo -c -o mate_power_manager-gpm-backlight.o `test -f 'gpm-backlight.c' || echo '$(srcdir)/'`gpm-backlight.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-backlight.Tpo $(DEPDIR)/mate_power_manager-gpm-backlight.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-backlight.c' object='mate_power_manager-gpm-backlight.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-backlight.o `test -f 'gpm-backlight.c' || echo '$(srcdir)/'`gpm-backlight.c

mate_power_manager-gpm-backlight.obj: gpm-backlight.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-backlight.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-backlight.Tpo -c -o mate_power_manager-gpm-backlight.obj `if test -f 'gpm-backlight.c'; then $(CYGPATH_W) 'gpm-backlight.c'; else $(CYGPATH_W) '$(srcdir)/gpm-backlight.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-backlight.Tpo $(DEPDIR)/mate_power_manager-gpm-backlight.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-backlight.c' object='mate_power_manager-gpm-backlight.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-backlight.obj `if test -f 'gpm-backlight.c'; then $(CYGPATH_W) 'gpm-backlight.c'; else $(CYGPATH_W) '$(srcdir)/gpm-backlight.c'; fi`

mate_power_manager-gpm-prefs-server.o: gpm-prefs-server.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-prefs-server.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-prefs-server.Tpo -c -o mate_power_manager-gpm-prefs-server.o `test -f 'gpm-prefs-server.c' || echo '$(srcdir)/'`gpm-prefs-server.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-prefs-server.Tpo $(DEPDIR)/mate_power_manager-gpm-prefs-server.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs-server.c' object='mate_power_manager-gpm-prefs-server.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-prefs-server.o `test -f 'gpm-prefs-server.c' || echo '$(srcdir)/'`gpm-prefs-server.c

mate_power_manager-gpm-prefs-server.obj: gpm-prefs-server.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-prefs-server.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-prefs-server.Tpo -c -o mate_power_manager-gpm-prefs-server.obj `if test -f 'gpm-prefs-server.c'; then $(CYGPATH_W) 'gpm-prefs-server.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs-server.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-prefs-server.Tpo $(DEPDIR)/mate_power_manager-gpm-prefs-server.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs-server.c' object='mate_power_manager-gpm-prefs-server.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-prefs-server.obj `if test -f 'gpm-prefs-server.c'; then $(CYGPATH_W) 'gpm-prefs-server.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs-server.c'; fi`

mate_power_manager-gpm-idle.o: gpm-idle.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-idle.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-idle.Tpo -c -o mate_power_manager-gpm-idle.o `test -f 'gpm-idle.c' || echo '$(srcdir)/'`gpm-idle.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-idle.Tpo $(DEPDIR)/mate_power_manager-gpm-idle.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-idle.c' object='mate_power_manager-gpm-idle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-idle.o `test -f 'gpm-idle.c' || echo '$(srcdir)/'`gpm-idle.c

mate_power_manager-gpm-idle.obj: gpm-idle.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-idle.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-idle.Tpo -c -o mate_power_manager-gpm-idle.obj `if test -f 'gpm-idle.c'; then $(CYGPATH_W) 'gpm-idle.c'; else $(CYGPATH_W) '$(srcdir)/gpm-idle.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-idle.Tpo $(DEPDIR)/mate_power_manager-gpm-idle.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-idle.c' object='mate_power_manager-gpm-idle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-idle.obj `if test -f 'gpm-idle.c'; then $(CYGPATH_W) 'gpm-idle.c'; else $(CYGPATH_W) '$(srcdir)/gpm-idle.c'; fi`

mate_power_manager-gpm-load.o: gpm-load.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-load.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-load.Tpo -c -o mate_power_manager-gpm-load.o `test -f 'gpm-load.c' || echo '$(srcdir)/'`gpm-load.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-load.Tpo $(DEPDIR)/mate_power_manager-gpm-load.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-load.c' object='mate_power_manager-gpm-load.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-load.o `test -f 'gpm-load.c' || echo '$(srcdir)/'`gpm-load.c

mate_power_manager-gpm-load.obj: gpm-load.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-load.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-load.Tpo -c -o mate_power_manager-gpm-load.obj `if test -f 'gpm-load.c'; then $(CYGPATH_W) 'gpm-load.c'; else $(CYGPATH_W) '$(srcdir)/gpm-load.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-load.Tpo $(DEPDIR)/mate_power_manager-gpm-load.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-load.c' object='mate_power_manager-gpm-load.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-load.obj `if test -f 'gpm-load.c'; then $(CYGPATH_W) 'gpm-load.c'; else $(CYGPATH_W) '$(srcdir)/gpm-load.c'; fi`

mate_power_manager-gpm-disks.o: gpm-disks.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-disks.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-disks.Tpo -c -o mate_power_manager-gpm-disks.o `test -f 'gpm-disks.c' || echo '$(srcdir)/'`gpm-disks.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-disks.Tpo $(DEPDIR)/mate_power_manager-gpm-disks.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-disks.c' object='mate_power_manager-gpm-disks.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-disks.o `test -f 'gpm-disks.c' || echo '$(srcdir)/'`gpm-disks.c

mate_power_manager-gpm-disks.obj: gpm-disks.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-disks.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-disks.Tpo -c -o mate_power_manager-gpm-disks.obj `if test -f 'gpm-disks.c'; then $(CYGPATH_W) 'gpm-disks.c'; else $(CYGPATH_W) '$(srcdir)/gpm-disks.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-disks.Tpo $(DEPDIR)/mate_power_manager-gpm-disks.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-disks.c' object='mate_power_manager-gpm-disks.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-disks.obj `if test -f 'gpm-disks.c'; then $(CYGPATH_W) 'gpm-disks.c'; else $(CYGPATH_W) '$(srcdir)/gpm-disks.c'; fi`

mate_power_manager-gpm-control.o: gpm-control.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-control.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-control.Tpo -c -o mate_power_manager-gpm-control.o `test -f 'gpm-control.c' || echo '$(srcdir)/'`gpm-control.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-control.Tpo $(DEPDIR)/mate_power_manager-gpm-control.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-control.c' object='mate_power_manager-gpm-control.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-control.o `test -f 'gpm-control.c' || echo '$(srcdir)/'`gpm-control.c

mate_power_manager-gpm-control.obj: gpm-control.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-control.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-control.Tpo -c -o mate_power_manager-gpm-control.obj `if test -f 'gpm-control.c'; then $(CYGPATH_W) 'gpm-control.c'; else $(CYGPATH_W) '$(srcdir)/gpm-control.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-control.Tpo $(DEPDIR)/mate_power_manager-gpm-control.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-control.c' object='mate_power_manager-gpm-control.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-control.obj `if test -f 'gpm-control.c'; then $(CYGPATH_W) 'gpm-control.c'; else $(CYGPATH_W) '$(srcdir)/gpm-control.c'; fi`

mate_power_manager-gpm-button.o: gpm-button.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-button.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-button.Tpo -c -o mate_power_manager-gpm-button.o `test -f 'gpm-button.c' || echo '$(srcdir)/'`gpm-button.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-button.Tpo $(DEPDIR)/mate_power_manager-gpm-button.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-button.c' object='mate_power_manager-gpm-button.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-button.o `test -f 'gpm-button.c' || echo '$(srcdir)/'`gpm-button.c

mate_power_manager-gpm-button.obj: gpm-button.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-button.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-button.Tpo -c -o mate_power_manager-gpm-button.obj `if test -f 'gpm-button.c'; then $(CYGPATH_W) 'gpm-button.c'; else $(CYGPATH_W) '$(srcdir)/gpm-button.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-button.Tpo $(DEPDIR)/mate_power_manager-gpm-button.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-button.c' object='mate_power_manager-gpm-button.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-button.obj `if test -f 'gpm-button.c'; then $(CYGPATH_W) 'gpm-button.c'; else $(CYGPATH_W) '$(srcdir)/gpm-button.c'; fi`

mate_power_manager-gpm-brightness.o: gpm-brightness.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-brightness.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-brightness.Tpo -c -o mate_power_manager-gpm-brightness.o `test -f 'gpm-brightness.c' || echo '$(srcdir)/'`gpm-brightness.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-brightness.Tpo $(DEPDIR)/mate_power_manager-gpm-brightness.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-brightness.c' object='mate_power_manager-gpm-brightness.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-brightness.o `test -f 'gpm-brightness.c' || echo '$(srcdir)/'`gpm-brightness.c

mate_power_manager-gpm-brightness.obj: gpm-brightness.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-brightness.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-brightness.Tpo -c -o mate_power_manager-gpm-brightness.obj `if test -f 'gpm-brightness.c'; then $(CYGPATH_W) 'gpm-brightness.c'; else $(CYGPATH_W) '$(srcdir)/gpm-brightness.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-brightness.Tpo $(DEPDIR)/mate_power_manager-gpm-brightness.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-brightness.c' object='mate_power_manager-gpm-brightness.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-brightness.obj `if test -f 'gpm-brightness.c'; then $(CYGPATH_W) 'gpm-brightness.c'; else $(CYGPATH_W) '$(srcdir)/gpm-brightness.c'; fi`

mate_power_manager-gpm-main.o: gpm-main.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-main.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-main.Tpo -c -o mate_power_manager-gpm-main.o `test -f 'gpm-main.c' || echo '$(srcdir)/'`gpm-main.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-main.Tpo $(DEPDIR)/mate_power_manager-gpm-main.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-main.c' object='mate_power_manager-gpm-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-main.o `test -f 'gpm-main.c' || echo '$(srcdir)/'`gpm-main.c

mate_power_manager-gpm-main.obj: gpm-main.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-main.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-main.Tpo -c -o mate_power_manager-gpm-main.obj `if test -f 'gpm-main.c'; then $(CYGPATH_W) 'gpm-main.c'; else $(CYGPATH_W) '$(srcdir)/gpm-main.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-main.Tpo $(DEPDIR)/mate_power_manager-gpm-main.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-main.c' object='mate_power_manager-gpm-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-main.obj `if test -f 'gpm-main.c'; then $(CYGPATH_W) 'gpm-main.c'; else $(CYGPATH_W) '$(srcdir)/gpm-main.c'; fi`

mate_power_manager-gpm-manager.o: gpm-manager.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-manager.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-manager.Tpo -c -o mate_power_manager-gpm-manager.o `test -f 'gpm-manager.c' || echo '$(srcdir)/'`gpm-manager.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-manager.Tpo $(DEPDIR)/mate_power_manager-gpm-manager.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-manager.c' object='mate_power_manager-gpm-manager.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-manager.o `test -f 'gpm-manager.c' || echo '$(srcdir)/'`gpm-manager.c

mate_power_manager-gpm-manager.obj: gpm-manager.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-manager.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-manager.Tpo -c -o mate_power_manager-gpm-manager.obj `if test -f 'gpm-manager.c'; then $(CYGPATH_W) 'gpm-manager.c'; else $(CYGPATH_W) '$(srcdir)/gpm-manager.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-manager.Tpo $(DEPDIR)/mate_power_manager-gpm-manager.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-manager.c' object='mate_power_manager-gpm-manager.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-manager.obj `if test -f 'gpm-manager.c'; then $(CYGPATH_W) 'gpm-manager.c'; else $(CYGPATH_W) '$(srcdir)/gpm-manager.c'; fi`

mate_power_manager-gpm-tray-icon.o: gpm-tray-icon.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-tray-icon.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-tray-icon.Tpo -c -o mate_power_manager-gpm-tray-icon.o `test -f 'gpm-tray-icon.c' || echo '$(srcdir)/'`gpm-tray-icon.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-tray-icon.Tpo $(DEPDIR)/mate_power_manager-gpm-tray-icon.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-tray-icon.c' object='mate_power_manager-gpm-tray-icon.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-tray-icon.o `test -f 'gpm-tray-icon.c' || echo '$(srcdir)/'`gpm-tray-icon.c

mate_power_manager-gpm-tray-icon.obj: gpm-tray-icon.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-tray-icon.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-tray-icon.Tpo -c -o mate_power_manager-gpm-tray-icon.obj `if test -f 'gpm-tray-icon.c'; then $(CYGPATH_W) 'gpm-tray-icon.c'; else $(CYGPATH_W) '$(srcdir)/gpm-tray-icon.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-tray-icon.Tpo $(DEPDIR)/mate_power_manager-gpm-tray-icon.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-tray-icon.c' object='mate_power_manager-gpm-tray-icon.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-tray-icon.obj `if test -f 'gpm-tray-icon.c'; then $(CYGPATH_W) 'gpm-tray-icon.c'; else $(CYGPATH_W) '$(srcdir)/gpm-tray-icon.c'; fi`

mate_power_manager-gpm-screensaver.o: gpm-screensaver.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-screensaver.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-screensaver.Tpo -c -o mate_power_manager-gpm-screensaver.o `test -f 'gpm-screensaver.c' || echo '$(srcdir)/'`gpm-screensaver.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-screensaver.Tpo $(DEPDIR)/mate_power_manager-gpm-screensaver.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-screensaver.c' object='mate_power_manager-gpm-screensaver.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-screensaver.o `test -f 'gpm-screensaver.c' || echo '$(srcdir)/'`gpm-screensaver.c

mate_power_manager-gpm-screensaver.obj: gpm-screensaver.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-screensaver.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-screensaver.Tpo -c -o mate_power_manager-gpm-screensaver.obj `if test -f 'gpm-screensaver.c'; then $(CYGPATH_W) 'gpm-screensaver.c'; else $(CYGPATH_W) '$(srcdir)/gpm-screensaver.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-screensaver.Tpo $(DEPDIR)/mate_power_manager-gpm-screensaver.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-screensaver.c' object='mate_power_manager-gpm-screensaver.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-screensaver.obj `if test -f 'gpm-screensaver.c'; then $(CYGPATH_W) 'gpm-screensaver.c'; else $(CYGPATH_W) '$(srcdir)/gpm-screensaver.c'; fi`

mate_power_manager-gpm-session.o: gpm-session.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-session.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-session.Tpo -c -o mate_power_manager-gpm-session.o `test -f 'gpm-session.c' || echo '$(srcdir)/'`gpm-session.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-session.Tpo $(DEPDIR)/mate_power_manager-gpm-session.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-session.c' object='mate_power_manager-gpm-session.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-session.o `test -f 'gpm-session.c' || echo '$(srcdir)/'`gpm-session.c

mate_power_manager-gpm-session.obj: gpm-session.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-session.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-session.Tpo -c -o mate_power_manager-gpm-session.obj `if test -f 'gpm-session.c'; then $(CYGPATH_W) 'gpm-session.c'; else $(CYGPATH_W) '$(srcdir)/gpm-session.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-session.Tpo $(DEPDIR)/mate_power_manager-gpm-session.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-session.c' object='mate_power_manager-gpm-session.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-session.obj `if test -f 'gpm-session.c'; then $(CYGPATH_W) 'gpm-session.c'; else $(CYGPATH_W) '$(srcdir)/gpm-session.c'; fi`

mate_power_manager-gpm-networkmanager.o: gpm-networkmanager.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-networkmanager.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-networkmanager.Tpo -c -o mate_power_manager-gpm-networkmanager.o `test -f 'gpm-networkmanager.c' || echo '$(srcdir)/'`gpm-networkmanager.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-networkmanager.Tpo $(DEPDIR)/mate_power_manager-gpm-networkmanager.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-networkmanager.c' object='mate_power_manager-gpm-networkmanager.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-networkmanager.o `test -f 'gpm-networkmanager.c' || echo '$(srcdir)/'`gpm-networkmanager.c

mate_power_manager-gpm-networkmanager.obj: gpm-networkmanager.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-networkmanager.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-networkmanager.Tpo -c -o mate_power_manager-gpm-networkmanager.obj `if test -f 'gpm-networkmanager.c'; then $(CYGPATH_W) 'gpm-networkmanager.c'; else $(CYGPATH_W) '$(srcdir)/gpm-networkmanager.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-networkmanager.Tpo $(DEPDIR)/mate_power_manager-gpm-networkmanager.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-networkmanager.c' object='mate_power_manager-gpm-networkmanager.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-networkmanager.obj `if test -f 'gpm-networkmanager.c'; then $(CYGPATH_W) 'gpm-networkmanager.c'; else $(CYGPATH_W) '$(srcdir)/gpm-networkmanager.c'; fi`

mate_power_manager-gsd-media-keys-window.o: gsd-media-keys-window.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gsd-media-keys-window.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gsd-media-keys-window.Tpo -c -o mate_power_manager-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gsd-media-keys-window.Tpo $(DEPDIR)/mate_power_manager-gsd-media-keys-window.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gsd-media-keys-window.c' object='mate_power_manager-gsd-media-keys-window.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gsd-media-keys-window.o `test -f 'gsd-media-keys-window.c' || echo '$(srcdir)/'`gsd-media-keys-window.c

mate_power_manager-gsd-media-keys-window.obj: gsd-media-keys-window.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gsd-media-keys-window.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gsd-media-keys-window.Tpo -c -o mate_power_manager-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gsd-media-keys-window.Tpo $(DEPDIR)/mate_power_manager-gsd-media-keys-window.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gsd-media-keys-window.c' object='mate_power_manager-gsd-media-keys-window.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gsd-media-keys-window.obj `if test -f 'gsd-media-keys-window.c'; then $(CYGPATH_W) 'gsd-media-keys-window.c'; else $(CYGPATH_W) '$(srcdir)/gsd-media-keys-window.c'; fi`

mate_power_manager-gpm-engine.o: gpm-engine.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-engine.o -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-engine.Tpo -c -o mate_power_manager-gpm-engine.o `test -f 'gpm-engine.c' || echo '$(srcdir)/'`gpm-engine.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-engine.Tpo $(DEPDIR)/mate_power_manager-gpm-engine.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-engine.c' object='mate_power_manager-gpm-engine.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-engine.o `test -f 'gpm-engine.c' || echo '$(srcdir)/'`gpm-engine.c

mate_power_manager-gpm-engine.obj: gpm-engine.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -MT mate_power_manager-gpm-engine.obj -MD -MP -MF $(DEPDIR)/mate_power_manager-gpm-engine.Tpo -c -o mate_power_manager-gpm-engine.obj `if test -f 'gpm-engine.c'; then $(CYGPATH_W) 'gpm-engine.c'; else $(CYGPATH_W) '$(srcdir)/gpm-engine.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_manager-gpm-engine.Tpo $(DEPDIR)/mate_power_manager-gpm-engine.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-engine.c' object='mate_power_manager-gpm-engine.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_manager_CFLAGS) $(CFLAGS) -c -o mate_power_manager-gpm-engine.obj `if test -f 'gpm-engine.c'; then $(CYGPATH_W) 'gpm-engine.c'; else $(CYGPATH_W) '$(srcdir)/gpm-engine.c'; fi`

mate_power_preferences-gpm-prefs.o: gpm-prefs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -MT mate_power_preferences-gpm-prefs.o -MD -MP -MF $(DEPDIR)/mate_power_preferences-gpm-prefs.Tpo -c -o mate_power_preferences-gpm-prefs.o `test -f 'gpm-prefs.c' || echo '$(srcdir)/'`gpm-prefs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_preferences-gpm-prefs.Tpo $(DEPDIR)/mate_power_preferences-gpm-prefs.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs.c' object='mate_power_preferences-gpm-prefs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -c -o mate_power_preferences-gpm-prefs.o `test -f 'gpm-prefs.c' || echo '$(srcdir)/'`gpm-prefs.c

mate_power_preferences-gpm-prefs.obj: gpm-prefs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -MT mate_power_preferences-gpm-prefs.obj -MD -MP -MF $(DEPDIR)/mate_power_preferences-gpm-prefs.Tpo -c -o mate_power_preferences-gpm-prefs.obj `if test -f 'gpm-prefs.c'; then $(CYGPATH_W) 'gpm-prefs.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_preferences-gpm-prefs.Tpo $(DEPDIR)/mate_power_preferences-gpm-prefs.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs.c' object='mate_power_preferences-gpm-prefs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -c -o mate_power_preferences-gpm-prefs.obj `if test -f 'gpm-prefs.c'; then $(CYGPATH_W) 'gpm-prefs.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs.c'; fi`

mate_power_preferences-gpm-prefs-core.o: gpm-prefs-core.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -MT mate_power_preferences-gpm-prefs-core.o -MD -MP -MF $(DEPDIR)/mate_power_preferences-gpm-prefs-core.Tpo -c -o mate_power_preferences-gpm-prefs-core.o `test -f 'gpm-prefs-core.c' || echo '$(srcdir)/'`gpm-prefs-core.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_preferences-gpm-prefs-core.Tpo $(DEPDIR)/mate_power_preferences-gpm-prefs-core.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs-core.c' object='mate_power_preferences-gpm-prefs-core.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -c -o mate_power_preferences-gpm-prefs-core.o `test -f 'gpm-prefs-core.c' || echo '$(srcdir)/'`gpm-prefs-core.c

mate_power_preferences-gpm-prefs-core.obj: gpm-prefs-core.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -MT mate_power_preferences-gpm-prefs-core.obj -MD -MP -MF $(DEPDIR)/mate_power_preferences-gpm-prefs-core.Tpo -c -o mate_power_preferences-gpm-prefs-core.obj `if test -f 'gpm-prefs-core.c'; then $(CYGPATH_W) 'gpm-prefs-core.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs-core.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_preferences-gpm-prefs-core.Tpo $(DEPDIR)/mate_power_preferences-gpm-prefs-core.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs-core.c' object='mate_power_preferences-gpm-prefs-core.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_preferences_CFLAGS) $(CFLAGS) -c -o mate_power_preferences-gpm-prefs-core.obj `if test -f 'gpm-prefs-core.c'; then $(CYGPATH_W) 'gpm-prefs-core.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs-core.c'; fi`

mate_power_self_test-gpm-self-test.o: gpm-self-test.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-self-test.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-self-test.Tpo -c -o mate_power_self_test-gpm-self-test.o `test -f 'gpm-self-test.c' || echo '$(srcdir)/'`gpm-self-test.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-self-test.Tpo $(DEPDIR)/mate_power_self_test-gpm-self-test.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-self-test.c' object='mate_power_self_test-gpm-self-test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-self-test.o `test -f 'gpm-self-test.c' || echo '$(srcdir)/'`gpm-self-test.c

mate_power_self_test-gpm-self-test.obj: gpm-self-test.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-self-test.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-self-test.Tpo -c -o mate_power_self_test-gpm-self-test.obj `if test -f 'gpm-self-test.c'; then $(CYGPATH_W) 'gpm-self-test.c'; else $(CYGPATH_W) '$(srcdir)/gpm-self-test.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-self-test.Tpo $(DEPDIR)/mate_power_self_test-gpm-self-test.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-self-test.c' object='mate_power_self_test-gpm-self-test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-self-test.obj `if test -f 'gpm-self-test.c'; then $(CYGPATH_W) 'gpm-self-test.c'; else $(CYGPATH_W) '$(srcdir)/gpm-self-test.c'; fi`

mate_power_self_test-egg-color.o: egg-color.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-color.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-color.Tpo -c -o mate_power_self_test-egg-color.o `test -f 'egg-color.c' || echo '$(srcdir)/'`egg-color.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-color.Tpo $(DEPDIR)/mate_power_self_test-egg-color.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-color.c' object='mate_power_self_test-egg-color.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-color.o `test -f 'egg-color.c' || echo '$(srcdir)/'`egg-color.c

mate_power_self_test-egg-color.obj: egg-color.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-color.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-color.Tpo -c -o mate_power_self_test-egg-color.obj `if test -f 'egg-color.c'; then $(CYGPATH_W) 'egg-color.c'; else $(CYGPATH_W) '$(srcdir)/egg-color.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-color.Tpo $(DEPDIR)/mate_power_self_test-egg-color.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-color.c' object='mate_power_self_test-egg-color.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-color.obj `if test -f 'egg-color.c'; then $(CYGPATH_W) 'egg-color.c'; else $(CYGPATH_W) '$(srcdir)/egg-color.c'; fi`

mate_power_self_test-egg-test.o: egg-test.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-test.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-test.Tpo -c -o mate_power_self_test-egg-test.o `test -f 'egg-test.c' || echo '$(srcdir)/'`egg-test.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-test.Tpo $(DEPDIR)/mate_power_self_test-egg-test.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-test.c' object='mate_power_self_test-egg-test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-test.o `test -f 'egg-test.c' || echo '$(srcdir)/'`egg-test.c

mate_power_self_test-egg-test.obj: egg-test.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-test.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-test.Tpo -c -o mate_power_self_test-egg-test.obj `if test -f 'egg-test.c'; then $(CYGPATH_W) 'egg-test.c'; else $(CYGPATH_W) '$(srcdir)/egg-test.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-test.Tpo $(DEPDIR)/mate_power_self_test-egg-test.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-test.c' object='mate_power_self_test-egg-test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-test.obj `if test -f 'egg-test.c'; then $(CYGPATH_W) 'egg-test.c'; else $(CYGPATH_W) '$(srcdir)/egg-test.c'; fi`

mate_power_self_test-egg-debug.o: egg-debug.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-debug.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-debug.Tpo -c -o mate_power_self_test-egg-debug.o `test -f 'egg-debug.c' || echo '$(srcdir)/'`egg-debug.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-debug.Tpo $(DEPDIR)/mate_power_self_test-egg-debug.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-debug.c' object='mate_power_self_test-egg-debug.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-debug.o `test -f 'egg-debug.c' || echo '$(srcdir)/'`egg-debug.c

mate_power_self_test-egg-debug.obj: egg-debug.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-debug.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-debug.Tpo -c -o mate_power_self_test-egg-debug.obj `if test -f 'egg-debug.c'; then $(CYGPATH_W) 'egg-debug.c'; else $(CYGPATH_W) '$(srcdir)/egg-debug.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-debug.Tpo $(DEPDIR)/mate_power_self_test-egg-debug.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-debug.c' object='mate_power_self_test-egg-debug.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-debug.obj `if test -f 'egg-debug.c'; then $(CYGPATH_W) 'egg-debug.c'; else $(CYGPATH_W) '$(srcdir)/egg-debug.c'; fi`

mate_power_self_test-egg-dbus-monitor.o: egg-dbus-monitor.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-dbus-monitor.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Tpo -c -o mate_power_self_test-egg-dbus-monitor.o `test -f 'egg-dbus-monitor.c' || echo '$(srcdir)/'`egg-dbus-monitor.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Tpo $(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-dbus-monitor.c' object='mate_power_self_test-egg-dbus-monitor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-dbus-monitor.o `test -f 'egg-dbus-monitor.c' || echo '$(srcdir)/'`egg-dbus-monitor.c

mate_power_self_test-egg-dbus-monitor.obj: egg-dbus-monitor.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-dbus-monitor.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Tpo -c -o mate_power_self_test-egg-dbus-monitor.obj `if test -f 'egg-dbus-monitor.c'; then $(CYGPATH_W) 'egg-dbus-monitor.c'; else $(CYGPATH_W) '$(srcdir)/egg-dbus-monitor.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Tpo $(DEPDIR)/mate_power_self_test-egg-dbus-monitor.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-dbus-monitor.c' object='mate_power_self_test-egg-dbus-monitor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-dbus-monitor.obj `if test -f 'egg-dbus-monitor.c'; then $(CYGPATH_W) 'egg-dbus-monitor.c'; else $(CYGPATH_W) '$(srcdir)/egg-dbus-monitor.c'; fi`

mate_power_self_test-egg-dbus-proxy.o: egg-dbus-proxy.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-dbus-proxy.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Tpo -c -o mate_power_self_test-egg-dbus-proxy.o `test -f 'egg-dbus-proxy.c' || echo '$(srcdir)/'`egg-dbus-proxy.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Tpo $(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-dbus-proxy.c' object='mate_power_self_test-egg-dbus-proxy.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-dbus-proxy.o `test -f 'egg-dbus-proxy.c' || echo '$(srcdir)/'`egg-dbus-proxy.c

mate_power_self_test-egg-dbus-proxy.obj: egg-dbus-proxy.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-dbus-proxy.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Tpo -c -o mate_power_self_test-egg-dbus-proxy.obj `if test -f 'egg-dbus-proxy.c'; then $(CYGPATH_W) 'egg-dbus-proxy.c'; else $(CYGPATH_W) '$(srcdir)/egg-dbus-proxy.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Tpo $(DEPDIR)/mate_power_self_test-egg-dbus-proxy.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-dbus-proxy.c' object='mate_power_self_test-egg-dbus-proxy.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-dbus-proxy.obj `if test -f 'egg-dbus-proxy.c'; then $(CYGPATH_W) 'egg-dbus-proxy.c'; else $(CYGPATH_W) '$(srcdir)/egg-dbus-proxy.c'; fi`

mate_power_self_test-egg-precision.o: egg-precision.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-precision.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-precision.Tpo -c -o mate_power_self_test-egg-precision.o `test -f 'egg-precision.c' || echo '$(srcdir)/'`egg-precision.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-precision.Tpo $(DEPDIR)/mate_power_self_test-egg-precision.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-precision.c' object='mate_power_self_test-egg-precision.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-precision.o `test -f 'egg-precision.c' || echo '$(srcdir)/'`egg-precision.c

mate_power_self_test-egg-precision.obj: egg-precision.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-precision.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-precision.Tpo -c -o mate_power_self_test-egg-precision.obj `if test -f 'egg-precision.c'; then $(CYGPATH_W) 'egg-precision.c'; else $(CYGPATH_W) '$(srcdir)/egg-precision.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-precision.Tpo $(DEPDIR)/mate_power_self_test-egg-precision.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-precision.c' object='mate_power_self_test-egg-precision.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-precision.obj `if test -f 'egg-precision.c'; then $(CYGPATH_W) 'egg-precision.c'; else $(CYGPATH_W) '$(srcdir)/egg-precision.c'; fi`

mate_power_self_test-egg-idletime.o: egg-idletime.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-idletime.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-idletime.Tpo -c -o mate_power_self_test-egg-idletime.o `test -f 'egg-idletime.c' || echo '$(srcdir)/'`egg-idletime.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-idletime.Tpo $(DEPDIR)/mate_power_self_test-egg-idletime.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-idletime.c' object='mate_power_self_test-egg-idletime.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-idletime.o `test -f 'egg-idletime.c' || echo '$(srcdir)/'`egg-idletime.c

mate_power_self_test-egg-idletime.obj: egg-idletime.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-idletime.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-idletime.Tpo -c -o mate_power_self_test-egg-idletime.obj `if test -f 'egg-idletime.c'; then $(CYGPATH_W) 'egg-idletime.c'; else $(CYGPATH_W) '$(srcdir)/egg-idletime.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-idletime.Tpo $(DEPDIR)/mate_power_self_test-egg-idletime.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-idletime.c' object='mate_power_self_test-egg-idletime.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-idletime.obj `if test -f 'egg-idletime.c'; then $(CYGPATH_W) 'egg-idletime.c'; else $(CYGPATH_W) '$(srcdir)/egg-idletime.c'; fi`

mate_power_self_test-egg-discrete.o: egg-discrete.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-discrete.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-discrete.Tpo -c -o mate_power_self_test-egg-discrete.o `test -f 'egg-discrete.c' || echo '$(srcdir)/'`egg-discrete.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-discrete.Tpo $(DEPDIR)/mate_power_self_test-egg-discrete.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-discrete.c' object='mate_power_self_test-egg-discrete.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-discrete.o `test -f 'egg-discrete.c' || echo '$(srcdir)/'`egg-discrete.c

mate_power_self_test-egg-discrete.obj: egg-discrete.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-discrete.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-discrete.Tpo -c -o mate_power_self_test-egg-discrete.obj `if test -f 'egg-discrete.c'; then $(CYGPATH_W) 'egg-discrete.c'; else $(CYGPATH_W) '$(srcdir)/egg-discrete.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-discrete.Tpo $(DEPDIR)/mate_power_self_test-egg-discrete.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-discrete.c' object='mate_power_self_test-egg-discrete.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-discrete.obj `if test -f 'egg-discrete.c'; then $(CYGPATH_W) 'egg-discrete.c'; else $(CYGPATH_W) '$(srcdir)/egg-discrete.c'; fi`

mate_power_self_test-egg-array-float.o: egg-array-float.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-array-float.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-array-float.Tpo -c -o mate_power_self_test-egg-array-float.o `test -f 'egg-array-float.c' || echo '$(srcdir)/'`egg-array-float.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-array-float.Tpo $(DEPDIR)/mate_power_self_test-egg-array-float.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-array-float.c' object='mate_power_self_test-egg-array-float.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-array-float.o `test -f 'egg-array-float.c' || echo '$(srcdir)/'`egg-array-float.c

mate_power_self_test-egg-array-float.obj: egg-array-float.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-array-float.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-array-float.Tpo -c -o mate_power_self_test-egg-array-float.obj `if test -f 'egg-array-float.c'; then $(CYGPATH_W) 'egg-array-float.c'; else $(CYGPATH_W) '$(srcdir)/egg-array-float.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-array-float.Tpo $(DEPDIR)/mate_power_self_test-egg-array-float.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-array-float.c' object='mate_power_self_test-egg-array-float.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-array-float.obj `if test -f 'egg-array-float.c'; then $(CYGPATH_W) 'egg-array-float.c'; else $(CYGPATH_W) '$(srcdir)/egg-array-float.c'; fi`

mate_power_self_test-egg-console-kit.o: egg-console-kit.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-console-kit.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-console-kit.Tpo -c -o mate_power_self_test-egg-console-kit.o `test -f 'egg-console-kit.c' || echo '$(srcdir)/'`egg-console-kit.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-console-kit.Tpo $(DEPDIR)/mate_power_self_test-egg-console-kit.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-console-kit.c' object='mate_power_self_test-egg-console-kit.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-console-kit.o `test -f 'egg-console-kit.c' || echo '$(srcdir)/'`egg-console-kit.c

mate_power_self_test-egg-console-kit.obj: egg-console-kit.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-egg-console-kit.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-egg-console-kit.Tpo -c -o mate_power_self_test-egg-console-kit.obj `if test -f 'egg-console-kit.c'; then $(CYGPATH_W) 'egg-console-kit.c'; else $(CYGPATH_W) '$(srcdir)/egg-console-kit.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-egg-console-kit.Tpo $(DEPDIR)/mate_power_self_test-egg-console-kit.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='egg-console-kit.c' object='mate_power_self_test-egg-console-kit.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-egg-console-kit.obj `if test -f 'egg-console-kit.c'; then $(CYGPATH_W) 'egg-console-kit.c'; else $(CYGPATH_W) '$(srcdir)/egg-console-kit.c'; fi`

mate_power_self_test-gpm-prefs-server.o: gpm-prefs-server.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-prefs-server.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-prefs-server.Tpo -c -o mate_power_self_test-gpm-prefs-server.o `test -f 'gpm-prefs-server.c' || echo '$(srcdir)/'`gpm-prefs-server.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-prefs-server.Tpo $(DEPDIR)/mate_power_self_test-gpm-prefs-server.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs-server.c' object='mate_power_self_test-gpm-prefs-server.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-prefs-server.o `test -f 'gpm-prefs-server.c' || echo '$(srcdir)/'`gpm-prefs-server.c

mate_power_self_test-gpm-prefs-server.obj: gpm-prefs-server.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-prefs-server.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-prefs-server.Tpo -c -o mate_power_self_test-gpm-prefs-server.obj `if test -f 'gpm-prefs-server.c'; then $(CYGPATH_W) 'gpm-prefs-server.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs-server.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-prefs-server.Tpo $(DEPDIR)/mate_power_self_test-gpm-prefs-server.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-prefs-server.c' object='mate_power_self_test-gpm-prefs-server.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-prefs-server.obj `if test -f 'gpm-prefs-server.c'; then $(CYGPATH_W) 'gpm-prefs-server.c'; else $(CYGPATH_W) '$(srcdir)/gpm-prefs-server.c'; fi`

mate_power_self_test-gpm-control.o: gpm-control.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-control.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-control.Tpo -c -o mate_power_self_test-gpm-control.o `test -f 'gpm-control.c' || echo '$(srcdir)/'`gpm-control.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-control.Tpo $(DEPDIR)/mate_power_self_test-gpm-control.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-control.c' object='mate_power_self_test-gpm-control.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-control.o `test -f 'gpm-control.c' || echo '$(srcdir)/'`gpm-control.c

mate_power_self_test-gpm-control.obj: gpm-control.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-control.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-control.Tpo -c -o mate_power_self_test-gpm-control.obj `if test -f 'gpm-control.c'; then $(CYGPATH_W) 'gpm-control.c'; else $(CYGPATH_W) '$(srcdir)/gpm-control.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-control.Tpo $(DEPDIR)/mate_power_self_test-gpm-control.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-control.c' object='mate_power_self_test-gpm-control.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-control.obj `if test -f 'gpm-control.c'; then $(CYGPATH_W) 'gpm-control.c'; else $(CYGPATH_W) '$(srcdir)/gpm-control.c'; fi`

mate_power_self_test-gpm-networkmanager.o: gpm-networkmanager.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-networkmanager.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-networkmanager.Tpo -c -o mate_power_self_test-gpm-networkmanager.o `test -f 'gpm-networkmanager.c' || echo '$(srcdir)/'`gpm-networkmanager.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-networkmanager.Tpo $(DEPDIR)/mate_power_self_test-gpm-networkmanager.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-networkmanager.c' object='mate_power_self_test-gpm-networkmanager.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-networkmanager.o `test -f 'gpm-networkmanager.c' || echo '$(srcdir)/'`gpm-networkmanager.c

mate_power_self_test-gpm-networkmanager.obj: gpm-networkmanager.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-networkmanager.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-networkmanager.Tpo -c -o mate_power_self_test-gpm-networkmanager.obj `if test -f 'gpm-networkmanager.c'; then $(CYGPATH_W) 'gpm-networkmanager.c'; else $(CYGPATH_W) '$(srcdir)/gpm-networkmanager.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-networkmanager.Tpo $(DEPDIR)/mate_power_self_test-gpm-networkmanager.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-networkmanager.c' object='mate_power_self_test-gpm-networkmanager.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-networkmanager.obj `if test -f 'gpm-networkmanager.c'; then $(CYGPATH_W) 'gpm-networkmanager.c'; else $(CYGPATH_W) '$(srcdir)/gpm-networkmanager.c'; fi`

mate_power_self_test-gpm-dpms.o: gpm-dpms.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-dpms.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-dpms.Tpo -c -o mate_power_self_test-gpm-dpms.o `test -f 'gpm-dpms.c' || echo '$(srcdir)/'`gpm-dpms.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-dpms.Tpo $(DEPDIR)/mate_power_self_test-gpm-dpms.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-dpms.c' object='mate_power_self_test-gpm-dpms.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-dpms.o `test -f 'gpm-dpms.c' || echo '$(srcdir)/'`gpm-dpms.c

mate_power_self_test-gpm-dpms.obj: gpm-dpms.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-dpms.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-dpms.Tpo -c -o mate_power_self_test-gpm-dpms.obj `if test -f 'gpm-dpms.c'; then $(CYGPATH_W) 'gpm-dpms.c'; else $(CYGPATH_W) '$(srcdir)/gpm-dpms.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-dpms.Tpo $(DEPDIR)/mate_power_self_test-gpm-dpms.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-dpms.c' object='mate_power_self_test-gpm-dpms.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-dpms.obj `if test -f 'gpm-dpms.c'; then $(CYGPATH_W) 'gpm-dpms.c'; else $(CYGPATH_W) '$(srcdir)/gpm-dpms.c'; fi`

mate_power_self_test-gpm-button.o: gpm-button.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-button.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-button.Tpo -c -o mate_power_self_test-gpm-button.o `test -f 'gpm-button.c' || echo '$(srcdir)/'`gpm-button.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-button.Tpo $(DEPDIR)/mate_power_self_test-gpm-button.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-button.c' object='mate_power_self_test-gpm-button.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-button.o `test -f 'gpm-button.c' || echo '$(srcdir)/'`gpm-button.c

mate_power_self_test-gpm-button.obj: gpm-button.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-button.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-button.Tpo -c -o mate_power_self_test-gpm-button.obj `if test -f 'gpm-button.c'; then $(CYGPATH_W) 'gpm-button.c'; else $(CYGPATH_W) '$(srcdir)/gpm-button.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-button.Tpo $(DEPDIR)/mate_power_self_test-gpm-button.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-button.c' object='mate_power_self_test-gpm-button.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-button.obj `if test -f 'gpm-button.c'; then $(CYGPATH_W) 'gpm-button.c'; else $(CYGPATH_W) '$(srcdir)/gpm-button.c'; fi`

mate_power_self_test-gpm-screensaver.o: gpm-screensaver.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-screensaver.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-screensaver.Tpo -c -o mate_power_self_test-gpm-screensaver.o `test -f 'gpm-screensaver.c' || echo '$(srcdir)/'`gpm-screensaver.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-screensaver.Tpo $(DEPDIR)/mate_power_self_test-gpm-screensaver.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-screensaver.c' object='mate_power_self_test-gpm-screensaver.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-screensaver.o `test -f 'gpm-screensaver.c' || echo '$(srcdir)/'`gpm-screensaver.c

mate_power_self_test-gpm-screensaver.obj: gpm-screensaver.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-screensaver.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-screensaver.Tpo -c -o mate_power_self_test-gpm-screensaver.obj `if test -f 'gpm-screensaver.c'; then $(CYGPATH_W) 'gpm-screensaver.c'; else $(CYGPATH_W) '$(srcdir)/gpm-screensaver.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-screensaver.Tpo $(DEPDIR)/mate_power_self_test-gpm-screensaver.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-screensaver.c' object='mate_power_self_test-gpm-screensaver.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-screensaver.obj `if test -f 'gpm-screensaver.c'; then $(CYGPATH_W) 'gpm-screensaver.c'; else $(CYGPATH_W) '$(srcdir)/gpm-screensaver.c'; fi`

mate_power_self_test-gpm-engine.o: gpm-engine.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-engine.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-engine.Tpo -c -o mate_power_self_test-gpm-engine.o `test -f 'gpm-engine.c' || echo '$(srcdir)/'`gpm-engine.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-engine.Tpo $(DEPDIR)/mate_power_self_test-gpm-engine.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-engine.c' object='mate_power_self_test-gpm-engine.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-engine.o `test -f 'gpm-engine.c' || echo '$(srcdir)/'`gpm-engine.c

mate_power_self_test-gpm-engine.obj: gpm-engine.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-engine.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-engine.Tpo -c -o mate_power_self_test-gpm-engine.obj `if test -f 'gpm-engine.c'; then $(CYGPATH_W) 'gpm-engine.c'; else $(CYGPATH_W) '$(srcdir)/gpm-engine.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-engine.Tpo $(DEPDIR)/mate_power_self_test-gpm-engine.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-engine.c' object='mate_power_self_test-gpm-engine.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-engine.obj `if test -f 'gpm-engine.c'; then $(CYGPATH_W) 'gpm-engine.c'; else $(CYGPATH_W) '$(srcdir)/gpm-engine.c'; fi`

mate_power_self_test-gpm-phone.o: gpm-phone.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-phone.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-phone.Tpo -c -o mate_power_self_test-gpm-phone.o `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-phone.Tpo $(DEPDIR)/mate_power_self_test-gpm-phone.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-phone.c' object='mate_power_self_test-gpm-phone.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-phone.o `test -f 'gpm-phone.c' || echo '$(srcdir)/'`gpm-phone.c

mate_power_self_test-gpm-phone.obj: gpm-phone.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-phone.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-phone.Tpo -c -o mate_power_self_test-gpm-phone.obj `if test -f 'gpm-phone.c'; then $(CYGPATH_W) 'gpm-phone.c'; else $(CYGPATH_W) '$(srcdir)/gpm-phone.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-phone.Tpo $(DEPDIR)/mate_power_self_test-gpm-phone.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-phone.c' object='mate_power_self_test-gpm-phone.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-phone.obj `if test -f 'gpm-phone.c'; then $(CYGPATH_W) 'gpm-phone.c'; else $(CYGPATH_W) '$(srcdir)/gpm-phone.c'; fi`

mate_power_self_test-gpm-idle.o: gpm-idle.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-idle.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-idle.Tpo -c -o mate_power_self_test-gpm-idle.o `test -f 'gpm-idle.c' || echo '$(srcdir)/'`gpm-idle.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-idle.Tpo $(DEPDIR)/mate_power_self_test-gpm-idle.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-idle.c' object='mate_power_self_test-gpm-idle.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-idle.o `test -f 'gpm-idle.c' || echo '$(srcdir)/'`gpm-idle.c

mate_power_self_test-gpm-idle.obj: gpm-idle.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-idle.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-idle.Tpo -c -o mate_power_self_test-gpm-idle.obj `if test -f 'gpm-idle.c'; then $(CYGPATH_W) 'gpm-idle.c'; else $(CYGPATH_W) '$(srcdir)/gpm-idle.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-idle.Tpo $(DEPDIR)/mate_power_self_test-gpm-idle.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-idle.c' object='mate_power_self_test-gpm-idle.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-idle.obj `if test -f 'gpm-idle.c'; then $(CYGPATH_W) 'gpm-idle.c'; else $(CYGPATH_W) '$(srcdir)/gpm-idle.c'; fi`

mate_power_self_test-gpm-session.o: gpm-session.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-session.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-session.Tpo -c -o mate_power_self_test-gpm-session.o `test -f 'gpm-session.c' || echo '$(srcdir)/'`gpm-session.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-session.Tpo $(DEPDIR)/mate_power_self_test-gpm-session.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-session.c' object='mate_power_self_test-gpm-session.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-session.o `test -f 'gpm-session.c' || echo '$(srcdir)/'`gpm-session.c

mate_power_self_test-gpm-session.obj: gpm-session.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-session.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-session.Tpo -c -o mate_power_self_test-gpm-session.obj `if test -f 'gpm-session.c'; then $(CYGPATH_W) 'gpm-session.c'; else $(CYGPATH_W) '$(srcdir)/gpm-session.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-session.Tpo $(DEPDIR)/mate_power_self_test-gpm-session.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-session.c' object='mate_power_self_test-gpm-session.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-session.obj `if test -f 'gpm-session.c'; then $(CYGPATH_W) 'gpm-session.c'; else $(CYGPATH_W) '$(srcdir)/gpm-session.c'; fi`

mate_power_self_test-gpm-load.o: gpm-load.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-load.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-load.Tpo -c -o mate_power_self_test-gpm-load.o `test -f 'gpm-load.c' || echo '$(srcdir)/'`gpm-load.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-load.Tpo $(DEPDIR)/mate_power_self_test-gpm-load.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-load.c' object='mate_power_self_test-gpm-load.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-load.o `test -f 'gpm-load.c' || echo '$(srcdir)/'`gpm-load.c

mate_power_self_test-gpm-load.obj: gpm-load.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-load.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-load.Tpo -c -o mate_power_self_test-gpm-load.obj `if test -f 'gpm-load.c'; then $(CYGPATH_W) 'gpm-load.c'; else $(CYGPATH_W) '$(srcdir)/gpm-load.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-load.Tpo $(DEPDIR)/mate_power_self_test-gpm-load.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-load.c' object='mate_power_self_test-gpm-load.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-load.obj `if test -f 'gpm-load.c'; then $(CYGPATH_W) 'gpm-load.c'; else $(CYGPATH_W) '$(srcdir)/gpm-load.c'; fi`

mate_power_self_test-gpm-marshal.o: gpm-marshal.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-marshal.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-marshal.Tpo -c -o mate_power_self_test-gpm-marshal.o `test -f 'gpm-marshal.c' || echo '$(srcdir)/'`gpm-marshal.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-marshal.Tpo $(DEPDIR)/mate_power_self_test-gpm-marshal.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-marshal.c' object='mate_power_self_test-gpm-marshal.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-marshal.o `test -f 'gpm-marshal.c' || echo '$(srcdir)/'`gpm-marshal.c

mate_power_self_test-gpm-marshal.obj: gpm-marshal.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-marshal.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-marshal.Tpo -c -o mate_power_self_test-gpm-marshal.obj `if test -f 'gpm-marshal.c'; then $(CYGPATH_W) 'gpm-marshal.c'; else $(CYGPATH_W) '$(srcdir)/gpm-marshal.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-marshal.Tpo $(DEPDIR)/mate_power_self_test-gpm-marshal.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-marshal.c' object='mate_power_self_test-gpm-marshal.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-marshal.obj `if test -f 'gpm-marshal.c'; then $(CYGPATH_W) 'gpm-marshal.c'; else $(CYGPATH_W) '$(srcdir)/gpm-marshal.c'; fi`

mate_power_self_test-gpm-common.o: gpm-common.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-common.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-common.Tpo -c -o mate_power_self_test-gpm-common.o `test -f 'gpm-common.c' || echo '$(srcdir)/'`gpm-common.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-common.Tpo $(DEPDIR)/mate_power_self_test-gpm-common.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-common.c' object='mate_power_self_test-gpm-common.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-common.o `test -f 'gpm-common.c' || echo '$(srcdir)/'`gpm-common.c

mate_power_self_test-gpm-common.obj: gpm-common.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-common.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-common.Tpo -c -o mate_power_self_test-gpm-common.obj `if test -f 'gpm-common.c'; then $(CYGPATH_W) 'gpm-common.c'; else $(CYGPATH_W) '$(srcdir)/gpm-common.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-common.Tpo $(DEPDIR)/mate_power_self_test-gpm-common.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-common.c' object='mate_power_self_test-gpm-common.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-common.obj `if test -f 'gpm-common.c'; then $(CYGPATH_W) 'gpm-common.c'; else $(CYGPATH_W) '$(srcdir)/gpm-common.c'; fi`

mate_power_self_test-gpm-upower.o: gpm-upower.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-upower.o -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-upower.Tpo -c -o mate_power_self_test-gpm-upower.o `test -f 'gpm-upower.c' || echo '$(srcdir)/'`gpm-upower.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-upower.Tpo $(DEPDIR)/mate_power_self_test-gpm-upower.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-upower.c' object='mate_power_self_test-gpm-upower.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-upower.o `test -f 'gpm-upower.c' || echo '$(srcdir)/'`gpm-upower.c

mate_power_self_test-gpm-upower.obj: gpm-upower.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -MT mate_power_self_test-gpm-upower.obj -MD -MP -MF $(DEPDIR)/mate_power_self_test-gpm-upower.Tpo -c -o mate_power_self_test-gpm-upower.obj `if test -f 'gpm-upower.c'; then $(CYGPATH_W) 'gpm-upower.c'; else $(CYGPATH_W) '$(srcdir)/gpm-upower.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_self_test-gpm-upower.Tpo $(DEPDIR)/mate_power_self_test-gpm-upower.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-upower.c' object='mate_power_self_test-gpm-upower.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_self_test_CFLAGS) $(CFLAGS) -c -o mate_power_self_test-gpm-upower.obj `if test -f 'gpm-upower.c'; then $(CYGPATH_W) 'gpm-upower.c'; else $(CYGPATH_W) '$(srcdir)/gpm-upower.c'; fi`

mate_power_statistics-gpm-statistics.o: gpm-statistics.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -MT mate_power_statistics-gpm-statistics.o -MD -MP -MF $(DEPDIR)/mate_power_statistics-gpm-statistics.Tpo -c -o mate_power_statistics-gpm-statistics.o `test -f 'gpm-statistics.c' || echo '$(srcdir)/'`gpm-statistics.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_statistics-gpm-statistics.Tpo $(DEPDIR)/mate_power_statistics-gpm-statistics.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-statistics.c' object='mate_power_statistics-gpm-statistics.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -c -o mate_power_statistics-gpm-statistics.o `test -f 'gpm-statistics.c' || echo '$(srcdir)/'`gpm-statistics.c

mate_power_statistics-gpm-statistics.obj: gpm-statistics.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -MT mate_power_statistics-gpm-statistics.obj -MD -MP -MF $(DEPDIR)/mate_power_statistics-gpm-statistics.Tpo -c -o mate_power_statistics-gpm-statistics.obj `if test -f 'gpm-statistics.c'; then $(CYGPATH_W) 'gpm-statistics.c'; else $(CYGPATH_W) '$(srcdir)/gpm-statistics.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_statistics-gpm-statistics.Tpo $(DEPDIR)/mate_power_statistics-gpm-statistics.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-statistics.c' object='mate_power_statistics-gpm-statistics.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -c -o mate_power_statistics-gpm-statistics.obj `if test -f 'gpm-statistics.c'; then $(CYGPATH_W) 'gpm-statistics.c'; else $(CYGPATH_W) '$(srcdir)/gpm-statistics.c'; fi`

mate_power_statistics-gpm-point-obj.o: gpm-point-obj.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -MT mate_power_statistics-gpm-point-obj.o -MD -MP -MF $(DEPDIR)/mate_power_statistics-gpm-point-obj.Tpo -c -o mate_power_statistics-gpm-point-obj.o `test -f 'gpm-point-obj.c' || echo '$(srcdir)/'`gpm-point-obj.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_statistics-gpm-point-obj.Tpo $(DEPDIR)/mate_power_statistics-gpm-point-obj.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-point-obj.c' object='mate_power_statistics-gpm-point-obj.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -c -o mate_power_statistics-gpm-point-obj.o `test -f 'gpm-point-obj.c' || echo '$(srcdir)/'`gpm-point-obj.c

mate_power_statistics-gpm-point-obj.obj: gpm-point-obj.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -MT mate_power_statistics-gpm-point-obj.obj -MD -MP -MF $(DEPDIR)/mate_power_statistics-gpm-point-obj.Tpo -c -o mate_power_statistics-gpm-point-obj.obj `if test -f 'gpm-point-obj.c'; then $(CYGPATH_W) 'gpm-point-obj.c'; else $(CYGPATH_W) '$(srcdir)/gpm-point-obj.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_statistics-gpm-point-obj.Tpo $(DEPDIR)/mate_power_statistics-gpm-point-obj.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-point-obj.c' object='mate_power_statistics-gpm-point-obj.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -c -o mate_power_statistics-gpm-point-obj.obj `if test -f 'gpm-point-obj.c'; then $(CYGPATH_W) 'gpm-point-obj.c'; else $(CYGPATH_W) '$(srcdir)/gpm-point-obj.c'; fi`

mate_power_statistics-gpm-graph-widget.o: gpm-graph-widget.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -MT mate_power_statistics-gpm-graph-widget.o -MD -MP -MF $(DEPDIR)/mate_power_statistics-gpm-graph-widget.Tpo -c -o mate_power_statistics-gpm-graph-widget.o `test -f 'gpm-graph-widget.c' || echo '$(srcdir)/'`gpm-graph-widget.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_statistics-gpm-graph-widget.Tpo $(DEPDIR)/mate_power_statistics-gpm-graph-widget.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-graph-widget.c' object='mate_power_statistics-gpm-graph-widget.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -c -o mate_power_statistics-gpm-graph-widget.o `test -f 'gpm-graph-widget.c' || echo '$(srcdir)/'`gpm-graph-widget.c

mate_power_statistics-gpm-graph-widget.obj: gpm-graph-widget.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -MT mate_power_statistics-gpm-graph-widget.obj -MD -MP -MF $(DEPDIR)/mate_power_statistics-gpm-graph-widget.Tpo -c -o mate_power_statistics-gpm-graph-widget.obj `if test -f 'gpm-graph-widget.c'; then $(CYGPATH_W) 'gpm-graph-widget.c'; else $(CYGPATH_W) '$(srcdir)/gpm-graph-widget.c'; fi`
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mate_power_statistics-gpm-graph-widget.Tpo $(DEPDIR)/mate_power_statistics-gpm-graph-widget.Po
@am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gpm-graph-widget.c' object='mate_power_statistics-gpm-graph-widget.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mate_power_statistics_CFLAGS) $(CFLAGS) -c -o mate_power_statistics-gpm-graph-widget.obj `if test -f 'gpm-graph-widget.c'; then $(CYGPATH_W) 'gpm-graph-widget.c'; else $(CYGPATH_W) '$(srcdir)/gpm-graph-widget.c'; fi`

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	mkid -fID $$unique
tags: TAGS

TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	set x; \
	here=`pwd`; \
	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	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
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	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"

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags

check-TESTS: $(TESTS)
	@failed=0; all=0; xfail=0; xpass=0; skip=0; \
	srcdir=$(srcdir); export srcdir; \
	list=' $(TESTS) '; \
	$(am__tty_colors); \
	if test -n "$$list"; then \
	  for tst in $$list; do \
	    if test -f ./$$tst; then dir=./; \
	    elif test -f $$tst; then dir=; \
	    else dir="$(srcdir)/"; fi; \
	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
	      all=`expr $$all + 1`; \
	      case " $(XFAIL_TESTS) " in \
	      *[\ \	]$$tst[\ \	]*) \
		xpass=`expr $$xpass + 1`; \
		failed=`expr $$failed + 1`; \
		col=$$red; res=XPASS; \
	      ;; \
	      *) \
		col=$$grn; res=PASS; \
	      ;; \
	      esac; \
	    elif test $$? -ne 77; then \
	      all=`expr $$all + 1`; \
	      case " $(XFAIL_TESTS) " in \
	      *[\ \	]$$tst[\ \	]*) \
		xfail=`expr $$xfail + 1`; \
		col=$$lgn; res=XFAIL; \
	      ;; \
	      *) \
		failed=`expr $$failed + 1`; \
		col=$$red; res=FAIL; \
	      ;; \
	      esac; \
	    else \
	      skip=`expr $$skip + 1`; \
	      col=$$blu; res=SKIP; \
	    fi; \
	    echo "$${col}$$res$${std}: $$tst"; \
	  done; \
	  if test "$$all" -eq 1; then \
	    tests="test"; \
	    All=""; \
	  else \
	    tests="tests"; \
	    All="All "; \
	  fi; \
	  if test "$$failed" -eq 0; then \
	    if test "$$xfail" -eq 0; then \
	      banner="$$All$$all $$tests passed"; \
	    else \
	      if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
	      banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
	    fi; \
	  else \
	    if test "$$xpass" -eq 0; then \
	      banner="$$failed of $$all $$tests failed"; \
	    else \
	      if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
	      banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
	    fi; \
	  fi; \
	  dashes="$$banner"; \
	  skipped=""; \
	  if test "$$skip" -ne 0; then \
	    if test "$$skip" -eq 1; then \
	      skipped="($$skip test was not run)"; \
	    else \
	      skipped="($$skip tests were not run)"; \
	    fi; \
	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
	      dashes="$$skipped"; \
	  fi; \
	  report=""; \
	  if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
	    report="Please report to $(PACKAGE_BUGREPORT)"; \
	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
	      dashes="$$report"; \
	  fi; \
	  dashes=`echo "$$dashes" | sed s/./=/g`; \
	  if test "$$failed" -eq 0; then \
	    echo "$$grn$$dashes"; \
	  else \
	    echo "$$red$$dashes"; \
	  fi; \
	  echo "$$banner"; \
	  test -z "$$skipped" || echo "$$skipped"; \
	  test -z "$$report" || echo "$$report"; \
	  echo "$$dashes$$std"; \
	  test "$$failed" -eq 0; \
	else :; fi

distdir: $(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)
	$(MAKE) $(AM_MAKEFLAGS) check-TESTS
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LIBRARIES) $(PROGRAMS)
installdirs:
	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
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:
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	  `test -z '$(STRIP)' || \
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:

clean-generic:
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

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)

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)
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-am

clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
	clean-libtool clean-local clean-noinstLIBRARIES \
	clean-sbinPROGRAMS mostlyclean-am

distclean: distclean-am
	-rm -rf ./$(DEPDIR)
	-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-binPROGRAMS install-sbinPROGRAMS

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 -rf ./$(DEPDIR)
	-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: uninstall-binPROGRAMS uninstall-sbinPROGRAMS

.MAKE: all check check-am install install-am install-strip

.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
	clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
	clean-libtool clean-local clean-noinstLIBRARIES \
	clean-sbinPROGRAMS ctags distclean distclean-compile \
	distclean-generic distclean-libtool distclean-tags distdir dvi \
	dvi-am html html-am info info-am install install-am \
	install-binPROGRAMS 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-sbinPROGRAMS 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 uninstall uninstall-am uninstall-binPROGRAMS \
	uninstall-sbinPROGRAMS


gpm-marshal.c: gpm-marshal.list
	echo "#include \"gpm-marshal.h\"" > $@ && \
	@GLIB_GENMARSHAL@ $< --prefix=gpm_marshal --body >> $@

gpm-marshal.h: gpm-marshal.list
	@GLIB_GENMARSHAL@ $< --prefix=gpm_marshal --header > $@

org.mate.PowerManager.h: org.mate.PowerManager.xml
	libtool --mode=execute dbus-binding-tool	\
		--prefix=gpm_manager			\
		--mode=glib-server			\
		--output=org.mate.PowerManager.h	\
		$(srcdir)/org.mate.PowerManager.xml

org.mate.PowerManager.Backlight.h: org.mate.PowerManager.Backlight.xml
	libtool --mode=execute dbus-binding-tool	\
		--prefix=gpm_backlight			\
		--mode=glib-server			\
		--output=org.mate.PowerManager.Backlight.h	\
		$(srcdir)/org.mate.PowerManager.Backlight.xml

clean-local:
	rm -f *~
	rm -f gpm-marshal.c gpm-marshal.h

# 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: