summaryrefslogtreecommitdiffstats
path: root/Makefile.in
blob: a286d374d50d29c849a1c61d60507679c33dcc11 (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
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
# Makefile.in generated by automake 1.9.5 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005  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@





SOURCES = $(libipkg_la_SOURCES) $(ipkg_cl_SOURCES) $(ipkg_extract_test_SOURCES) $(ipkg_hash_test_SOURCES)

srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = .
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
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 = ipkg-cl$(EXEEXT)
noinst_PROGRAMS = ipkg_hash_test$(EXEEXT) ipkg_extract_test$(EXEEXT)
DIST_COMMON = README $(am__configure_deps) $(libipkg_include_HEADERS) \
	$(srcdir)/Makefile.am $(srcdir)/Makefile.in \
	$(srcdir)/config.h.in $(srcdir)/ipkg.h.in \
	$(srcdir)/libipkg.pc.in $(top_srcdir)/configure AUTHORS \
	COPYING ChangeLog INSTALL NEWS TODO compile config.guess \
	config.sub depcomp install-sh ltmain.sh missing mkinstalldirs
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno configure.status.lineno
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = libipkg.pc ipkg.h
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
	"$(DESTDIR)$(bindir)" "$(DESTDIR)$(interceptdir)" \
	"$(DESTDIR)$(libipkg_includedir)"
libLTLIBRARIES_INSTALL = $(INSTALL)
LTLIBRARIES = $(lib_LTLIBRARIES)
libipkg_la_DEPENDENCIES = libbb/libbb.la
am__objects_1 = libipkg_la-args.lo libipkg_la-libipkg.lo \
	libipkg_la-user.lo
am__objects_2 = libipkg_la-ipkg_cmd.lo libipkg_la-ipkg_configure.lo \
	libipkg_la-ipkg_download.lo libipkg_la-ipkg_install.lo \
	libipkg_la-ipkg_upgrade.lo libipkg_la-ipkg_remove.lo
am__objects_3 = libipkg_la-ipkg_conf.lo libipkg_la-ipkg_utils.lo \
	libipkg_la-pkg.lo libipkg_la-pkg_depends.lo \
	libipkg_la-pkg_extract.lo libipkg_la-hash_table.lo \
	libipkg_la-pkg_hash.lo libipkg_la-pkg_parse.lo \
	libipkg_la-pkg_vec.lo
am__objects_4 = libipkg_la-file_util.lo libipkg_la-ipkg_message.lo \
	libipkg_la-md5.lo libipkg_la-sprintf_alloc.lo \
	libipkg_la-str_util.lo libipkg_la-xregex.lo \
	libipkg_la-xsystem.lo
am__objects_5 = libipkg_la-conffile.lo libipkg_la-conffile_list.lo \
	libipkg_la-nv_pair.lo libipkg_la-nv_pair_list.lo \
	libipkg_la-pkg_dest.lo libipkg_la-pkg_dest_list.lo \
	libipkg_la-pkg_src.lo libipkg_la-pkg_src_list.lo \
	libipkg_la-str_list.lo libipkg_la-void_list.lo
am_libipkg_la_OBJECTS = $(am__objects_1) $(am__objects_2) \
	$(am__objects_3) $(am__objects_4) $(am__objects_5)
libipkg_la_OBJECTS = $(am_libipkg_la_OBJECTS)
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
am_ipkg_cl_OBJECTS = ipkg_cl-ipkg-frontend.$(OBJEXT)
ipkg_cl_OBJECTS = $(am_ipkg_cl_OBJECTS)
ipkg_cl_DEPENDENCIES = libipkg.la libbb/libbb.la
am__objects_6 = ipkg_extract_test-ipkg_conf.$(OBJEXT) \
	ipkg_extract_test-ipkg_utils.$(OBJEXT) \
	ipkg_extract_test-pkg.$(OBJEXT) \
	ipkg_extract_test-pkg_depends.$(OBJEXT) \
	ipkg_extract_test-pkg_extract.$(OBJEXT) \
	ipkg_extract_test-hash_table.$(OBJEXT) \
	ipkg_extract_test-pkg_hash.$(OBJEXT) \
	ipkg_extract_test-pkg_parse.$(OBJEXT) \
	ipkg_extract_test-pkg_vec.$(OBJEXT)
am__objects_7 = ipkg_extract_test-file_util.$(OBJEXT) \
	ipkg_extract_test-ipkg_message.$(OBJEXT) \
	ipkg_extract_test-md5.$(OBJEXT) \
	ipkg_extract_test-sprintf_alloc.$(OBJEXT) \
	ipkg_extract_test-str_util.$(OBJEXT) \
	ipkg_extract_test-xregex.$(OBJEXT) \
	ipkg_extract_test-xsystem.$(OBJEXT)
am__objects_8 = ipkg_extract_test-conffile.$(OBJEXT) \
	ipkg_extract_test-conffile_list.$(OBJEXT) \
	ipkg_extract_test-nv_pair.$(OBJEXT) \
	ipkg_extract_test-nv_pair_list.$(OBJEXT) \
	ipkg_extract_test-pkg_dest.$(OBJEXT) \
	ipkg_extract_test-pkg_dest_list.$(OBJEXT) \
	ipkg_extract_test-pkg_src.$(OBJEXT) \
	ipkg_extract_test-pkg_src_list.$(OBJEXT) \
	ipkg_extract_test-str_list.$(OBJEXT) \
	ipkg_extract_test-void_list.$(OBJEXT)
am_ipkg_extract_test_OBJECTS =  \
	ipkg_extract_test-ipkg_extract_test.$(OBJEXT) $(am__objects_6) \
	$(am__objects_7) $(am__objects_8)
ipkg_extract_test_OBJECTS = $(am_ipkg_extract_test_OBJECTS)
ipkg_extract_test_DEPENDENCIES = libbb/libbb.la
am__objects_9 = ipkg_hash_test-ipkg_conf.$(OBJEXT) \
	ipkg_hash_test-ipkg_utils.$(OBJEXT) \
	ipkg_hash_test-pkg.$(OBJEXT) \
	ipkg_hash_test-pkg_depends.$(OBJEXT) \
	ipkg_hash_test-pkg_extract.$(OBJEXT) \
	ipkg_hash_test-hash_table.$(OBJEXT) \
	ipkg_hash_test-pkg_hash.$(OBJEXT) \
	ipkg_hash_test-pkg_parse.$(OBJEXT) \
	ipkg_hash_test-pkg_vec.$(OBJEXT)
am__objects_10 = ipkg_hash_test-file_util.$(OBJEXT) \
	ipkg_hash_test-ipkg_message.$(OBJEXT) \
	ipkg_hash_test-md5.$(OBJEXT) \
	ipkg_hash_test-sprintf_alloc.$(OBJEXT) \
	ipkg_hash_test-str_util.$(OBJEXT) \
	ipkg_hash_test-xregex.$(OBJEXT) \
	ipkg_hash_test-xsystem.$(OBJEXT)
am__objects_11 = ipkg_hash_test-conffile.$(OBJEXT) \
	ipkg_hash_test-conffile_list.$(OBJEXT) \
	ipkg_hash_test-nv_pair.$(OBJEXT) \
	ipkg_hash_test-nv_pair_list.$(OBJEXT) \
	ipkg_hash_test-pkg_dest.$(OBJEXT) \
	ipkg_hash_test-pkg_dest_list.$(OBJEXT) \
	ipkg_hash_test-pkg_src.$(OBJEXT) \
	ipkg_hash_test-pkg_src_list.$(OBJEXT) \
	ipkg_hash_test-str_list.$(OBJEXT) \
	ipkg_hash_test-void_list.$(OBJEXT)
am_ipkg_hash_test_OBJECTS = ipkg_hash_test-ipkg_hash_test.$(OBJEXT) \
	$(am__objects_9) $(am__objects_10) $(am__objects_11)
ipkg_hash_test_OBJECTS = $(am_ipkg_hash_test_OBJECTS)
ipkg_hash_test_DEPENDENCIES = libbb/libbb.la
binSCRIPT_INSTALL = $(INSTALL_SCRIPT)
SCRIPTS = $(bin_SCRIPTS)
DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
SOURCES = $(libipkg_la_SOURCES) $(ipkg_cl_SOURCES) \
	$(ipkg_extract_test_SOURCES) $(ipkg_hash_test_SOURCES)
DIST_SOURCES = $(libipkg_la_SOURCES) $(ipkg_cl_SOURCES) \
	$(ipkg_extract_test_SOURCES) $(ipkg_hash_test_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
	html-recursive info-recursive install-data-recursive \
	install-exec-recursive install-info-recursive \
	install-recursive installcheck-recursive installdirs-recursive \
	pdf-recursive ps-recursive uninstall-info-recursive \
	uninstall-recursive
interceptDATA_INSTALL = $(INSTALL_DATA)
DATA = $(intercept_DATA)
libipkg_includeHEADERS_INSTALL = $(INSTALL_HEADER)
HEADERS = $(libipkg_include_HEADERS)
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
  { test ! -d $(distdir) \
    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
         && rm -fr $(distdir); }; }
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMDEP_FALSE = @AMDEP_FALSE@
AMDEP_TRUE = @AMDEP_TRUE@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO = @ECHO@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_F77 = @ac_ct_F77@
ac_ct_RANLIB = @ac_ct_RANLIB@
ac_ct_STRIP = @ac_ct_STRIP@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
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@
datadir = @datadir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
ipkglibdir = @ipkglibdir@
libdir = @libdir@
libexecdir = @libexecdir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
prefix = @prefix@
program_transform_name = @program_transform_name@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@

#SUBDIRS = etc replace familiar libbb
SUBDIRS = etc familiar libbb
HOST_CPU = @host_cpu@
BUILD_CPU = @build_cpu@
IPKGLIBDIR = @ipkglibdir@ 
ALL_CFLAGS = -g -O -Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DIPKGLIBDIR=\"@ipkglibdir@\" -DDATADIR=\"@datadir@\"
lib_LTLIBRARIES = libipkg.la
bin_SCRIPTS = update-alternatives
interceptdir = $(datadir)/ipkg/intercept
intercept_DATA = intercept/ldconfig intercept/depmod intercept/update-modules

# ipkg_LDADD = libbb/libbb.a replace/libreplace.a

#ipkg_cl_LDADD = libipkg.la libbb/libbb.la replace/libreplace.a 
ipkg_cl_LDADD = libipkg.la libbb/libbb.la 
libipkg_includedir = $(includedir)/libipkg
libipkg_include_HEADERS = \
	args.h \
	conffile.h \
	conffile_list.h \
	config.h \
	hash_table.h \
	includes.h \
	ipkg_conf.h \
	ipkg.h \
	ipkg_message.h \
	nv_pair.h \
	nv_pair_list.h \
	pkg_depends.h \
	pkg_dest.h \
	pkg_dest_list.h \
	pkg.h \
	pkg_hash.h \
	pkg_src.h \
	pkg_src_list.h \
	pkg_vec.h \
	str_list.h \
	void_list.h \
	libipkg.h 


#\ replace/replace.h

#libipkg_la_LIBADD = libbb/libbb.la replace/libreplace.a
libipkg_la_LIBADD = libbb/libbb.la 
ipkg_core_sources = args.c args.h ipkg.c \
		    user.c user.h 

ipkg_libcore_sources = args.c args.h libipkg.c libipkg.h ipkg.h\
		    user.c user.h 

ipkg_cmd_sources = ipkg_cmd.c ipkg_cmd.h \
		   ipkg_configure.c ipkg_configure.h \
		   ipkg_download.c ipkg_download.h \
		   ipkg_install.c ipkg_install.h \
		   ipkg_upgrade.c ipkg_upgrade.h \
		   ipkg_remove.c ipkg_remove.h

ipkg_db_sources = ipkg_conf.c ipkg_conf.h \
		  ipkg_utils.c ipkg_utils.h pkg.c pkg.h hash_table.h \
		  pkg_depends.c pkg_depends.h pkg_extract.c pkg_extract.h \
		  hash_table.c pkg_hash.c pkg_hash.h pkg_parse.c pkg_parse.h \
		  pkg_vec.c pkg_vec.h

ipkg_list_sources = conffile.c conffile.h conffile_list.c conffile_list.h \
		    nv_pair.c nv_pair.h nv_pair_list.c nv_pair_list.h \
		    pkg_dest.c pkg_dest.h pkg_dest_list.c pkg_dest_list.h \
		    pkg_src.c pkg_src.h pkg_src_list.c pkg_src_list.h \
		    str_list.c str_list.h void_list.c void_list.h

ipkg_util_sources = file_util.c file_util.h ipkg_message.h ipkg_message.c md5.c md5.h \
		    sprintf_alloc.c sprintf_alloc.h str_util.c str_util.h \
		    xregex.c xregex.h xsystem.c xsystem.h


# ipkg_SOURCES = $(ipkg_core_sources) $(ipkg_cmd_sources) $(ipkg_db_sources) \
#	       $(ipkg_util_sources) $(ipkg_list_sources)
EXTRA_DIST = ipkg.c update-alternatives $(intercept_DATA)
MAINTAINERCLEANFILES = \
	configure \
	Makefile.in \
	config.guess \
	config.sub \
	ltmain.sh \
	.Makefile.am.swp \
	aclocal.m4

libipkg_la_SOURCES = $(ipkg_libcore_sources) $(ipkg_cmd_sources) $(ipkg_db_sources) \
	       $(ipkg_util_sources) $(ipkg_list_sources)

ipkg_cl_SOURCES = ipkg-frontend.c
libipkg_la_CFLAGS = -DIPKG_LIB $(ALL_CFLAGS)
ipkg_CFLAGS = $(ALL_CFLAGS)
ipkg_cl_CFLAGS = -DIPKG_LIB $(ALL_CFLAGS)
ipkg_hash_test_LDADD = libbb/libbb.la
ipkg_hash_test_SOURCES = ipkg_hash_test.c $(ipkg_db_sources) $(ipkg_util_sources) $(ipkg_list_sources)
ipkg_hash_test_CFLAGS = $(ALL_CFLAGS)
ipkg_extract_test_LDADD = libbb/libbb.la
ipkg_extract_test_SOURCES = ipkg_extract_test.c $(ipkg_db_sources) $(ipkg_util_sources) $(ipkg_list_sources)
ipkg_extract_test_CFLAGS = $(ALL_CFLAGS)
all: config.h
	$(MAKE) $(AM_MAKEFLAGS) all-recursive

.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
am--refresh:
	@:
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
	      cd $(srcdir) && $(AUTOMAKE) --gnu  \
		&& exit 0; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  Makefile'; \
	cd $(top_srcdir) && \
	  $(AUTOMAKE) --gnu  Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    echo ' $(SHELL) ./config.status'; \
	    $(SHELL) ./config.status;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
	esac;

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	$(SHELL) ./config.status --recheck

$(top_srcdir)/configure:  $(am__configure_deps)
	cd $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
	cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)

config.h: stamp-h1
	@if test ! -f $@; then \
	  rm -f stamp-h1; \
	  $(MAKE) stamp-h1; \
	else :; fi

stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
	@rm -f stamp-h1
	cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in:  $(am__configure_deps) 
	cd $(top_srcdir) && $(AUTOHEADER)
	rm -f stamp-h1
	touch $@

distclean-hdr:
	-rm -f config.h stamp-h1
libipkg.pc: $(top_builddir)/config.status $(srcdir)/libipkg.pc.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
ipkg.h: $(top_builddir)/config.status $(srcdir)/ipkg.h.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
	  if test -f $$p; then \
	    f=$(am__strip_dir) \
	    echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
	    $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
	  else :; fi; \
	done

uninstall-libLTLIBRARIES:
	@$(NORMAL_UNINSTALL)
	@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
	  p=$(am__strip_dir) \
	  echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
	  $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
	done

clean-libLTLIBRARIES:
	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
	  test "$$dir" != "$$p" || dir=.; \
	  echo "rm -f \"$${dir}/so_locations\""; \
	  rm -f "$${dir}/so_locations"; \
	done
libipkg.la: $(libipkg_la_OBJECTS) $(libipkg_la_DEPENDENCIES) 
	$(LINK) -rpath $(libdir) $(libipkg_la_LDFLAGS) $(libipkg_la_OBJECTS) $(libipkg_la_LIBADD) $(LIBS)
install-binPROGRAMS: $(bin_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
	@list='$(bin_PROGRAMS)'; for p in $$list; do \
	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
	  if test -f $$p \
	     || test -f $$p1 \
	  ; then \
	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
	  else :; fi; \
	done

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

clean-binPROGRAMS:
	@list='$(bin_PROGRAMS)'; for p in $$list; do \
	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
	  echo " rm -f $$p $$f"; \
	  rm -f $$p $$f ; \
	done

clean-noinstPROGRAMS:
	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
	  echo " rm -f $$p $$f"; \
	  rm -f $$p $$f ; \
	done
ipkg-cl$(EXEEXT): $(ipkg_cl_OBJECTS) $(ipkg_cl_DEPENDENCIES) 
	@rm -f ipkg-cl$(EXEEXT)
	$(LINK) $(ipkg_cl_LDFLAGS) $(ipkg_cl_OBJECTS) $(ipkg_cl_LDADD) $(LIBS)
ipkg_extract_test$(EXEEXT): $(ipkg_extract_test_OBJECTS) $(ipkg_extract_test_DEPENDENCIES) 
	@rm -f ipkg_extract_test$(EXEEXT)
	$(LINK) $(ipkg_extract_test_LDFLAGS) $(ipkg_extract_test_OBJECTS) $(ipkg_extract_test_LDADD) $(LIBS)
ipkg_hash_test$(EXEEXT): $(ipkg_hash_test_OBJECTS) $(ipkg_hash_test_DEPENDENCIES) 
	@rm -f ipkg_hash_test$(EXEEXT)
	$(LINK) $(ipkg_hash_test_LDFLAGS) $(ipkg_hash_test_OBJECTS) $(ipkg_hash_test_LDADD) $(LIBS)
install-binSCRIPTS: $(bin_SCRIPTS)
	@$(NORMAL_INSTALL)
	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
	@list='$(bin_SCRIPTS)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  if test -f $$d$$p; then \
	    f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
	    echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \
	    $(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \
	  else :; fi; \
	done

uninstall-binSCRIPTS:
	@$(NORMAL_UNINSTALL)
	@list='$(bin_SCRIPTS)'; for p in $$list; do \
	  f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
	  echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
	  rm -f "$(DESTDIR)$(bindir)/$$f"; \
	done

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

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

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_cl-ipkg-frontend.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-conffile.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-conffile_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-file_util.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-hash_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-ipkg_conf.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-ipkg_message.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-ipkg_utils.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-md5.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-nv_pair.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-nv_pair_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_depends.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_dest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_extract.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_hash.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_src.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_src_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-pkg_vec.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-str_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-str_util.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-void_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-xregex.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_extract_test-xsystem.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-conffile.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-conffile_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-file_util.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-hash_table.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-ipkg_conf.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-ipkg_message.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-ipkg_utils.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-md5.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-nv_pair.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-nv_pair_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_depends.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_dest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_extract.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_hash.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_src.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_src_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-pkg_vec.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-str_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-str_util.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-void_list.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-xregex.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipkg_hash_test-xsystem.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-args.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-conffile.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-conffile_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-file_util.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-hash_table.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_cmd.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_conf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_configure.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_download.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_install.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_message.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_remove.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_upgrade.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-ipkg_utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-libipkg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-md5.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-nv_pair.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-nv_pair_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_depends.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_dest.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_dest_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_extract.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_hash.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_parse.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_src.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_src_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-pkg_vec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-sprintf_alloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-str_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-str_util.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-user.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-void_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-xregex.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libipkg_la-xsystem.Plo@am__quote@

.c.o:
@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@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@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@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@	if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@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 $@ $<

libipkg_la-args.lo: args.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-args.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-args.Tpo" -c -o libipkg_la-args.lo `test -f 'args.c' || echo '$(srcdir)/'`args.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-args.Tpo" "$(DEPDIR)/libipkg_la-args.Plo"; else rm -f "$(DEPDIR)/libipkg_la-args.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='args.c' object='libipkg_la-args.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-args.lo `test -f 'args.c' || echo '$(srcdir)/'`args.c

libipkg_la-libipkg.lo: libipkg.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-libipkg.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-libipkg.Tpo" -c -o libipkg_la-libipkg.lo `test -f 'libipkg.c' || echo '$(srcdir)/'`libipkg.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-libipkg.Tpo" "$(DEPDIR)/libipkg_la-libipkg.Plo"; else rm -f "$(DEPDIR)/libipkg_la-libipkg.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libipkg.c' object='libipkg_la-libipkg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-libipkg.lo `test -f 'libipkg.c' || echo '$(srcdir)/'`libipkg.c

libipkg_la-user.lo: user.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-user.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-user.Tpo" -c -o libipkg_la-user.lo `test -f 'user.c' || echo '$(srcdir)/'`user.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-user.Tpo" "$(DEPDIR)/libipkg_la-user.Plo"; else rm -f "$(DEPDIR)/libipkg_la-user.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='user.c' object='libipkg_la-user.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-user.lo `test -f 'user.c' || echo '$(srcdir)/'`user.c

libipkg_la-ipkg_cmd.lo: ipkg_cmd.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_cmd.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_cmd.Tpo" -c -o libipkg_la-ipkg_cmd.lo `test -f 'ipkg_cmd.c' || echo '$(srcdir)/'`ipkg_cmd.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_cmd.Tpo" "$(DEPDIR)/libipkg_la-ipkg_cmd.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_cmd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_cmd.c' object='libipkg_la-ipkg_cmd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_cmd.lo `test -f 'ipkg_cmd.c' || echo '$(srcdir)/'`ipkg_cmd.c

libipkg_la-ipkg_configure.lo: ipkg_configure.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_configure.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_configure.Tpo" -c -o libipkg_la-ipkg_configure.lo `test -f 'ipkg_configure.c' || echo '$(srcdir)/'`ipkg_configure.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_configure.Tpo" "$(DEPDIR)/libipkg_la-ipkg_configure.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_configure.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_configure.c' object='libipkg_la-ipkg_configure.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_configure.lo `test -f 'ipkg_configure.c' || echo '$(srcdir)/'`ipkg_configure.c

libipkg_la-ipkg_download.lo: ipkg_download.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_download.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_download.Tpo" -c -o libipkg_la-ipkg_download.lo `test -f 'ipkg_download.c' || echo '$(srcdir)/'`ipkg_download.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_download.Tpo" "$(DEPDIR)/libipkg_la-ipkg_download.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_download.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_download.c' object='libipkg_la-ipkg_download.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_download.lo `test -f 'ipkg_download.c' || echo '$(srcdir)/'`ipkg_download.c

libipkg_la-ipkg_install.lo: ipkg_install.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_install.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_install.Tpo" -c -o libipkg_la-ipkg_install.lo `test -f 'ipkg_install.c' || echo '$(srcdir)/'`ipkg_install.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_install.Tpo" "$(DEPDIR)/libipkg_la-ipkg_install.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_install.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_install.c' object='libipkg_la-ipkg_install.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_install.lo `test -f 'ipkg_install.c' || echo '$(srcdir)/'`ipkg_install.c

libipkg_la-ipkg_upgrade.lo: ipkg_upgrade.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_upgrade.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_upgrade.Tpo" -c -o libipkg_la-ipkg_upgrade.lo `test -f 'ipkg_upgrade.c' || echo '$(srcdir)/'`ipkg_upgrade.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_upgrade.Tpo" "$(DEPDIR)/libipkg_la-ipkg_upgrade.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_upgrade.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_upgrade.c' object='libipkg_la-ipkg_upgrade.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_upgrade.lo `test -f 'ipkg_upgrade.c' || echo '$(srcdir)/'`ipkg_upgrade.c

libipkg_la-ipkg_remove.lo: ipkg_remove.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_remove.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_remove.Tpo" -c -o libipkg_la-ipkg_remove.lo `test -f 'ipkg_remove.c' || echo '$(srcdir)/'`ipkg_remove.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_remove.Tpo" "$(DEPDIR)/libipkg_la-ipkg_remove.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_remove.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_remove.c' object='libipkg_la-ipkg_remove.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_remove.lo `test -f 'ipkg_remove.c' || echo '$(srcdir)/'`ipkg_remove.c

libipkg_la-ipkg_conf.lo: ipkg_conf.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_conf.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_conf.Tpo" -c -o libipkg_la-ipkg_conf.lo `test -f 'ipkg_conf.c' || echo '$(srcdir)/'`ipkg_conf.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_conf.Tpo" "$(DEPDIR)/libipkg_la-ipkg_conf.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_conf.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_conf.c' object='libipkg_la-ipkg_conf.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_conf.lo `test -f 'ipkg_conf.c' || echo '$(srcdir)/'`ipkg_conf.c

libipkg_la-ipkg_utils.lo: ipkg_utils.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_utils.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_utils.Tpo" -c -o libipkg_la-ipkg_utils.lo `test -f 'ipkg_utils.c' || echo '$(srcdir)/'`ipkg_utils.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_utils.Tpo" "$(DEPDIR)/libipkg_la-ipkg_utils.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_utils.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_utils.c' object='libipkg_la-ipkg_utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_utils.lo `test -f 'ipkg_utils.c' || echo '$(srcdir)/'`ipkg_utils.c

libipkg_la-pkg.lo: pkg.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg.Tpo" -c -o libipkg_la-pkg.lo `test -f 'pkg.c' || echo '$(srcdir)/'`pkg.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg.Tpo" "$(DEPDIR)/libipkg_la-pkg.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg.c' object='libipkg_la-pkg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg.lo `test -f 'pkg.c' || echo '$(srcdir)/'`pkg.c

libipkg_la-pkg_depends.lo: pkg_depends.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_depends.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_depends.Tpo" -c -o libipkg_la-pkg_depends.lo `test -f 'pkg_depends.c' || echo '$(srcdir)/'`pkg_depends.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_depends.Tpo" "$(DEPDIR)/libipkg_la-pkg_depends.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_depends.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_depends.c' object='libipkg_la-pkg_depends.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_depends.lo `test -f 'pkg_depends.c' || echo '$(srcdir)/'`pkg_depends.c

libipkg_la-pkg_extract.lo: pkg_extract.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_extract.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_extract.Tpo" -c -o libipkg_la-pkg_extract.lo `test -f 'pkg_extract.c' || echo '$(srcdir)/'`pkg_extract.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_extract.Tpo" "$(DEPDIR)/libipkg_la-pkg_extract.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_extract.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_extract.c' object='libipkg_la-pkg_extract.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_extract.lo `test -f 'pkg_extract.c' || echo '$(srcdir)/'`pkg_extract.c

libipkg_la-hash_table.lo: hash_table.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-hash_table.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-hash_table.Tpo" -c -o libipkg_la-hash_table.lo `test -f 'hash_table.c' || echo '$(srcdir)/'`hash_table.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-hash_table.Tpo" "$(DEPDIR)/libipkg_la-hash_table.Plo"; else rm -f "$(DEPDIR)/libipkg_la-hash_table.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='hash_table.c' object='libipkg_la-hash_table.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-hash_table.lo `test -f 'hash_table.c' || echo '$(srcdir)/'`hash_table.c

libipkg_la-pkg_hash.lo: pkg_hash.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_hash.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_hash.Tpo" -c -o libipkg_la-pkg_hash.lo `test -f 'pkg_hash.c' || echo '$(srcdir)/'`pkg_hash.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_hash.Tpo" "$(DEPDIR)/libipkg_la-pkg_hash.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_hash.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_hash.c' object='libipkg_la-pkg_hash.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_hash.lo `test -f 'pkg_hash.c' || echo '$(srcdir)/'`pkg_hash.c

libipkg_la-pkg_parse.lo: pkg_parse.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_parse.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_parse.Tpo" -c -o libipkg_la-pkg_parse.lo `test -f 'pkg_parse.c' || echo '$(srcdir)/'`pkg_parse.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_parse.Tpo" "$(DEPDIR)/libipkg_la-pkg_parse.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_parse.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_parse.c' object='libipkg_la-pkg_parse.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_parse.lo `test -f 'pkg_parse.c' || echo '$(srcdir)/'`pkg_parse.c

libipkg_la-pkg_vec.lo: pkg_vec.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_vec.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_vec.Tpo" -c -o libipkg_la-pkg_vec.lo `test -f 'pkg_vec.c' || echo '$(srcdir)/'`pkg_vec.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_vec.Tpo" "$(DEPDIR)/libipkg_la-pkg_vec.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_vec.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_vec.c' object='libipkg_la-pkg_vec.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_vec.lo `test -f 'pkg_vec.c' || echo '$(srcdir)/'`pkg_vec.c

libipkg_la-file_util.lo: file_util.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-file_util.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-file_util.Tpo" -c -o libipkg_la-file_util.lo `test -f 'file_util.c' || echo '$(srcdir)/'`file_util.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-file_util.Tpo" "$(DEPDIR)/libipkg_la-file_util.Plo"; else rm -f "$(DEPDIR)/libipkg_la-file_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='file_util.c' object='libipkg_la-file_util.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-file_util.lo `test -f 'file_util.c' || echo '$(srcdir)/'`file_util.c

libipkg_la-ipkg_message.lo: ipkg_message.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-ipkg_message.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-ipkg_message.Tpo" -c -o libipkg_la-ipkg_message.lo `test -f 'ipkg_message.c' || echo '$(srcdir)/'`ipkg_message.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-ipkg_message.Tpo" "$(DEPDIR)/libipkg_la-ipkg_message.Plo"; else rm -f "$(DEPDIR)/libipkg_la-ipkg_message.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_message.c' object='libipkg_la-ipkg_message.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-ipkg_message.lo `test -f 'ipkg_message.c' || echo '$(srcdir)/'`ipkg_message.c

libipkg_la-md5.lo: md5.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-md5.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-md5.Tpo" -c -o libipkg_la-md5.lo `test -f 'md5.c' || echo '$(srcdir)/'`md5.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-md5.Tpo" "$(DEPDIR)/libipkg_la-md5.Plo"; else rm -f "$(DEPDIR)/libipkg_la-md5.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='md5.c' object='libipkg_la-md5.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-md5.lo `test -f 'md5.c' || echo '$(srcdir)/'`md5.c

libipkg_la-sprintf_alloc.lo: sprintf_alloc.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-sprintf_alloc.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-sprintf_alloc.Tpo" -c -o libipkg_la-sprintf_alloc.lo `test -f 'sprintf_alloc.c' || echo '$(srcdir)/'`sprintf_alloc.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-sprintf_alloc.Tpo" "$(DEPDIR)/libipkg_la-sprintf_alloc.Plo"; else rm -f "$(DEPDIR)/libipkg_la-sprintf_alloc.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sprintf_alloc.c' object='libipkg_la-sprintf_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-sprintf_alloc.lo `test -f 'sprintf_alloc.c' || echo '$(srcdir)/'`sprintf_alloc.c

libipkg_la-str_util.lo: str_util.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-str_util.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-str_util.Tpo" -c -o libipkg_la-str_util.lo `test -f 'str_util.c' || echo '$(srcdir)/'`str_util.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-str_util.Tpo" "$(DEPDIR)/libipkg_la-str_util.Plo"; else rm -f "$(DEPDIR)/libipkg_la-str_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_util.c' object='libipkg_la-str_util.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-str_util.lo `test -f 'str_util.c' || echo '$(srcdir)/'`str_util.c

libipkg_la-xregex.lo: xregex.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-xregex.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-xregex.Tpo" -c -o libipkg_la-xregex.lo `test -f 'xregex.c' || echo '$(srcdir)/'`xregex.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-xregex.Tpo" "$(DEPDIR)/libipkg_la-xregex.Plo"; else rm -f "$(DEPDIR)/libipkg_la-xregex.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xregex.c' object='libipkg_la-xregex.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-xregex.lo `test -f 'xregex.c' || echo '$(srcdir)/'`xregex.c

libipkg_la-xsystem.lo: xsystem.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-xsystem.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-xsystem.Tpo" -c -o libipkg_la-xsystem.lo `test -f 'xsystem.c' || echo '$(srcdir)/'`xsystem.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-xsystem.Tpo" "$(DEPDIR)/libipkg_la-xsystem.Plo"; else rm -f "$(DEPDIR)/libipkg_la-xsystem.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xsystem.c' object='libipkg_la-xsystem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-xsystem.lo `test -f 'xsystem.c' || echo '$(srcdir)/'`xsystem.c

libipkg_la-conffile.lo: conffile.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-conffile.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-conffile.Tpo" -c -o libipkg_la-conffile.lo `test -f 'conffile.c' || echo '$(srcdir)/'`conffile.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-conffile.Tpo" "$(DEPDIR)/libipkg_la-conffile.Plo"; else rm -f "$(DEPDIR)/libipkg_la-conffile.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile.c' object='libipkg_la-conffile.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-conffile.lo `test -f 'conffile.c' || echo '$(srcdir)/'`conffile.c

libipkg_la-conffile_list.lo: conffile_list.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-conffile_list.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-conffile_list.Tpo" -c -o libipkg_la-conffile_list.lo `test -f 'conffile_list.c' || echo '$(srcdir)/'`conffile_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-conffile_list.Tpo" "$(DEPDIR)/libipkg_la-conffile_list.Plo"; else rm -f "$(DEPDIR)/libipkg_la-conffile_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile_list.c' object='libipkg_la-conffile_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-conffile_list.lo `test -f 'conffile_list.c' || echo '$(srcdir)/'`conffile_list.c

libipkg_la-nv_pair.lo: nv_pair.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-nv_pair.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-nv_pair.Tpo" -c -o libipkg_la-nv_pair.lo `test -f 'nv_pair.c' || echo '$(srcdir)/'`nv_pair.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-nv_pair.Tpo" "$(DEPDIR)/libipkg_la-nv_pair.Plo"; else rm -f "$(DEPDIR)/libipkg_la-nv_pair.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair.c' object='libipkg_la-nv_pair.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-nv_pair.lo `test -f 'nv_pair.c' || echo '$(srcdir)/'`nv_pair.c

libipkg_la-nv_pair_list.lo: nv_pair_list.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-nv_pair_list.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-nv_pair_list.Tpo" -c -o libipkg_la-nv_pair_list.lo `test -f 'nv_pair_list.c' || echo '$(srcdir)/'`nv_pair_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-nv_pair_list.Tpo" "$(DEPDIR)/libipkg_la-nv_pair_list.Plo"; else rm -f "$(DEPDIR)/libipkg_la-nv_pair_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair_list.c' object='libipkg_la-nv_pair_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-nv_pair_list.lo `test -f 'nv_pair_list.c' || echo '$(srcdir)/'`nv_pair_list.c

libipkg_la-pkg_dest.lo: pkg_dest.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_dest.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_dest.Tpo" -c -o libipkg_la-pkg_dest.lo `test -f 'pkg_dest.c' || echo '$(srcdir)/'`pkg_dest.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_dest.Tpo" "$(DEPDIR)/libipkg_la-pkg_dest.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_dest.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest.c' object='libipkg_la-pkg_dest.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_dest.lo `test -f 'pkg_dest.c' || echo '$(srcdir)/'`pkg_dest.c

libipkg_la-pkg_dest_list.lo: pkg_dest_list.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_dest_list.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_dest_list.Tpo" -c -o libipkg_la-pkg_dest_list.lo `test -f 'pkg_dest_list.c' || echo '$(srcdir)/'`pkg_dest_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_dest_list.Tpo" "$(DEPDIR)/libipkg_la-pkg_dest_list.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_dest_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest_list.c' object='libipkg_la-pkg_dest_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_dest_list.lo `test -f 'pkg_dest_list.c' || echo '$(srcdir)/'`pkg_dest_list.c

libipkg_la-pkg_src.lo: pkg_src.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_src.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_src.Tpo" -c -o libipkg_la-pkg_src.lo `test -f 'pkg_src.c' || echo '$(srcdir)/'`pkg_src.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_src.Tpo" "$(DEPDIR)/libipkg_la-pkg_src.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_src.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src.c' object='libipkg_la-pkg_src.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_src.lo `test -f 'pkg_src.c' || echo '$(srcdir)/'`pkg_src.c

libipkg_la-pkg_src_list.lo: pkg_src_list.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-pkg_src_list.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-pkg_src_list.Tpo" -c -o libipkg_la-pkg_src_list.lo `test -f 'pkg_src_list.c' || echo '$(srcdir)/'`pkg_src_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-pkg_src_list.Tpo" "$(DEPDIR)/libipkg_la-pkg_src_list.Plo"; else rm -f "$(DEPDIR)/libipkg_la-pkg_src_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src_list.c' object='libipkg_la-pkg_src_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-pkg_src_list.lo `test -f 'pkg_src_list.c' || echo '$(srcdir)/'`pkg_src_list.c

libipkg_la-str_list.lo: str_list.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-str_list.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-str_list.Tpo" -c -o libipkg_la-str_list.lo `test -f 'str_list.c' || echo '$(srcdir)/'`str_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-str_list.Tpo" "$(DEPDIR)/libipkg_la-str_list.Plo"; else rm -f "$(DEPDIR)/libipkg_la-str_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_list.c' object='libipkg_la-str_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-str_list.lo `test -f 'str_list.c' || echo '$(srcdir)/'`str_list.c

libipkg_la-void_list.lo: void_list.c
@am__fastdepCC_TRUE@	if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -MT libipkg_la-void_list.lo -MD -MP -MF "$(DEPDIR)/libipkg_la-void_list.Tpo" -c -o libipkg_la-void_list.lo `test -f 'void_list.c' || echo '$(srcdir)/'`void_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/libipkg_la-void_list.Tpo" "$(DEPDIR)/libipkg_la-void_list.Plo"; else rm -f "$(DEPDIR)/libipkg_la-void_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='void_list.c' object='libipkg_la-void_list.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libipkg_la_CFLAGS) $(CFLAGS) -c -o libipkg_la-void_list.lo `test -f 'void_list.c' || echo '$(srcdir)/'`void_list.c

ipkg_cl-ipkg-frontend.o: ipkg-frontend.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_cl_CFLAGS) $(CFLAGS) -MT ipkg_cl-ipkg-frontend.o -MD -MP -MF "$(DEPDIR)/ipkg_cl-ipkg-frontend.Tpo" -c -o ipkg_cl-ipkg-frontend.o `test -f 'ipkg-frontend.c' || echo '$(srcdir)/'`ipkg-frontend.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_cl-ipkg-frontend.Tpo" "$(DEPDIR)/ipkg_cl-ipkg-frontend.Po"; else rm -f "$(DEPDIR)/ipkg_cl-ipkg-frontend.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg-frontend.c' object='ipkg_cl-ipkg-frontend.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) $(ipkg_cl_CFLAGS) $(CFLAGS) -c -o ipkg_cl-ipkg-frontend.o `test -f 'ipkg-frontend.c' || echo '$(srcdir)/'`ipkg-frontend.c

ipkg_cl-ipkg-frontend.obj: ipkg-frontend.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_cl_CFLAGS) $(CFLAGS) -MT ipkg_cl-ipkg-frontend.obj -MD -MP -MF "$(DEPDIR)/ipkg_cl-ipkg-frontend.Tpo" -c -o ipkg_cl-ipkg-frontend.obj `if test -f 'ipkg-frontend.c'; then $(CYGPATH_W) 'ipkg-frontend.c'; else $(CYGPATH_W) '$(srcdir)/ipkg-frontend.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_cl-ipkg-frontend.Tpo" "$(DEPDIR)/ipkg_cl-ipkg-frontend.Po"; else rm -f "$(DEPDIR)/ipkg_cl-ipkg-frontend.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg-frontend.c' object='ipkg_cl-ipkg-frontend.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) $(ipkg_cl_CFLAGS) $(CFLAGS) -c -o ipkg_cl-ipkg-frontend.obj `if test -f 'ipkg-frontend.c'; then $(CYGPATH_W) 'ipkg-frontend.c'; else $(CYGPATH_W) '$(srcdir)/ipkg-frontend.c'; fi`

ipkg_extract_test-ipkg_extract_test.o: ipkg_extract_test.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_extract_test.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Tpo" -c -o ipkg_extract_test-ipkg_extract_test.o `test -f 'ipkg_extract_test.c' || echo '$(srcdir)/'`ipkg_extract_test.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_extract_test.c' object='ipkg_extract_test-ipkg_extract_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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_extract_test.o `test -f 'ipkg_extract_test.c' || echo '$(srcdir)/'`ipkg_extract_test.c

ipkg_extract_test-ipkg_extract_test.obj: ipkg_extract_test.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_extract_test.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Tpo" -c -o ipkg_extract_test-ipkg_extract_test.obj `if test -f 'ipkg_extract_test.c'; then $(CYGPATH_W) 'ipkg_extract_test.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_extract_test.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_extract_test.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_extract_test.c' object='ipkg_extract_test-ipkg_extract_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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_extract_test.obj `if test -f 'ipkg_extract_test.c'; then $(CYGPATH_W) 'ipkg_extract_test.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_extract_test.c'; fi`

ipkg_extract_test-ipkg_conf.o: ipkg_conf.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_conf.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Tpo" -c -o ipkg_extract_test-ipkg_conf.o `test -f 'ipkg_conf.c' || echo '$(srcdir)/'`ipkg_conf.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_conf.c' object='ipkg_extract_test-ipkg_conf.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_conf.o `test -f 'ipkg_conf.c' || echo '$(srcdir)/'`ipkg_conf.c

ipkg_extract_test-ipkg_conf.obj: ipkg_conf.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_conf.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Tpo" -c -o ipkg_extract_test-ipkg_conf.obj `if test -f 'ipkg_conf.c'; then $(CYGPATH_W) 'ipkg_conf.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_conf.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_conf.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_conf.c' object='ipkg_extract_test-ipkg_conf.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_conf.obj `if test -f 'ipkg_conf.c'; then $(CYGPATH_W) 'ipkg_conf.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_conf.c'; fi`

ipkg_extract_test-ipkg_utils.o: ipkg_utils.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_utils.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Tpo" -c -o ipkg_extract_test-ipkg_utils.o `test -f 'ipkg_utils.c' || echo '$(srcdir)/'`ipkg_utils.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_utils.c' object='ipkg_extract_test-ipkg_utils.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_utils.o `test -f 'ipkg_utils.c' || echo '$(srcdir)/'`ipkg_utils.c

ipkg_extract_test-ipkg_utils.obj: ipkg_utils.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_utils.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Tpo" -c -o ipkg_extract_test-ipkg_utils.obj `if test -f 'ipkg_utils.c'; then $(CYGPATH_W) 'ipkg_utils.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_utils.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_utils.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_utils.c' object='ipkg_extract_test-ipkg_utils.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_utils.obj `if test -f 'ipkg_utils.c'; then $(CYGPATH_W) 'ipkg_utils.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_utils.c'; fi`

ipkg_extract_test-pkg.o: pkg.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg.Tpo" -c -o ipkg_extract_test-pkg.o `test -f 'pkg.c' || echo '$(srcdir)/'`pkg.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg.c' object='ipkg_extract_test-pkg.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg.o `test -f 'pkg.c' || echo '$(srcdir)/'`pkg.c

ipkg_extract_test-pkg.obj: pkg.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg.Tpo" -c -o ipkg_extract_test-pkg.obj `if test -f 'pkg.c'; then $(CYGPATH_W) 'pkg.c'; else $(CYGPATH_W) '$(srcdir)/pkg.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg.c' object='ipkg_extract_test-pkg.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg.obj `if test -f 'pkg.c'; then $(CYGPATH_W) 'pkg.c'; else $(CYGPATH_W) '$(srcdir)/pkg.c'; fi`

ipkg_extract_test-pkg_depends.o: pkg_depends.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_depends.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_depends.Tpo" -c -o ipkg_extract_test-pkg_depends.o `test -f 'pkg_depends.c' || echo '$(srcdir)/'`pkg_depends.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_depends.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_depends.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_depends.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_depends.c' object='ipkg_extract_test-pkg_depends.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_depends.o `test -f 'pkg_depends.c' || echo '$(srcdir)/'`pkg_depends.c

ipkg_extract_test-pkg_depends.obj: pkg_depends.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_depends.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_depends.Tpo" -c -o ipkg_extract_test-pkg_depends.obj `if test -f 'pkg_depends.c'; then $(CYGPATH_W) 'pkg_depends.c'; else $(CYGPATH_W) '$(srcdir)/pkg_depends.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_depends.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_depends.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_depends.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_depends.c' object='ipkg_extract_test-pkg_depends.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_depends.obj `if test -f 'pkg_depends.c'; then $(CYGPATH_W) 'pkg_depends.c'; else $(CYGPATH_W) '$(srcdir)/pkg_depends.c'; fi`

ipkg_extract_test-pkg_extract.o: pkg_extract.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_extract.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_extract.Tpo" -c -o ipkg_extract_test-pkg_extract.o `test -f 'pkg_extract.c' || echo '$(srcdir)/'`pkg_extract.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_extract.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_extract.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_extract.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_extract.c' object='ipkg_extract_test-pkg_extract.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_extract.o `test -f 'pkg_extract.c' || echo '$(srcdir)/'`pkg_extract.c

ipkg_extract_test-pkg_extract.obj: pkg_extract.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_extract.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_extract.Tpo" -c -o ipkg_extract_test-pkg_extract.obj `if test -f 'pkg_extract.c'; then $(CYGPATH_W) 'pkg_extract.c'; else $(CYGPATH_W) '$(srcdir)/pkg_extract.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_extract.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_extract.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_extract.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_extract.c' object='ipkg_extract_test-pkg_extract.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_extract.obj `if test -f 'pkg_extract.c'; then $(CYGPATH_W) 'pkg_extract.c'; else $(CYGPATH_W) '$(srcdir)/pkg_extract.c'; fi`

ipkg_extract_test-hash_table.o: hash_table.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-hash_table.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-hash_table.Tpo" -c -o ipkg_extract_test-hash_table.o `test -f 'hash_table.c' || echo '$(srcdir)/'`hash_table.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-hash_table.Tpo" "$(DEPDIR)/ipkg_extract_test-hash_table.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-hash_table.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='hash_table.c' object='ipkg_extract_test-hash_table.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-hash_table.o `test -f 'hash_table.c' || echo '$(srcdir)/'`hash_table.c

ipkg_extract_test-hash_table.obj: hash_table.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-hash_table.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-hash_table.Tpo" -c -o ipkg_extract_test-hash_table.obj `if test -f 'hash_table.c'; then $(CYGPATH_W) 'hash_table.c'; else $(CYGPATH_W) '$(srcdir)/hash_table.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-hash_table.Tpo" "$(DEPDIR)/ipkg_extract_test-hash_table.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-hash_table.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='hash_table.c' object='ipkg_extract_test-hash_table.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-hash_table.obj `if test -f 'hash_table.c'; then $(CYGPATH_W) 'hash_table.c'; else $(CYGPATH_W) '$(srcdir)/hash_table.c'; fi`

ipkg_extract_test-pkg_hash.o: pkg_hash.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_hash.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_hash.Tpo" -c -o ipkg_extract_test-pkg_hash.o `test -f 'pkg_hash.c' || echo '$(srcdir)/'`pkg_hash.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_hash.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_hash.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_hash.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_hash.c' object='ipkg_extract_test-pkg_hash.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_hash.o `test -f 'pkg_hash.c' || echo '$(srcdir)/'`pkg_hash.c

ipkg_extract_test-pkg_hash.obj: pkg_hash.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_hash.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_hash.Tpo" -c -o ipkg_extract_test-pkg_hash.obj `if test -f 'pkg_hash.c'; then $(CYGPATH_W) 'pkg_hash.c'; else $(CYGPATH_W) '$(srcdir)/pkg_hash.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_hash.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_hash.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_hash.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_hash.c' object='ipkg_extract_test-pkg_hash.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_hash.obj `if test -f 'pkg_hash.c'; then $(CYGPATH_W) 'pkg_hash.c'; else $(CYGPATH_W) '$(srcdir)/pkg_hash.c'; fi`

ipkg_extract_test-pkg_parse.o: pkg_parse.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_parse.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_parse.Tpo" -c -o ipkg_extract_test-pkg_parse.o `test -f 'pkg_parse.c' || echo '$(srcdir)/'`pkg_parse.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_parse.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_parse.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_parse.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_parse.c' object='ipkg_extract_test-pkg_parse.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_parse.o `test -f 'pkg_parse.c' || echo '$(srcdir)/'`pkg_parse.c

ipkg_extract_test-pkg_parse.obj: pkg_parse.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_parse.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_parse.Tpo" -c -o ipkg_extract_test-pkg_parse.obj `if test -f 'pkg_parse.c'; then $(CYGPATH_W) 'pkg_parse.c'; else $(CYGPATH_W) '$(srcdir)/pkg_parse.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_parse.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_parse.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_parse.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_parse.c' object='ipkg_extract_test-pkg_parse.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_parse.obj `if test -f 'pkg_parse.c'; then $(CYGPATH_W) 'pkg_parse.c'; else $(CYGPATH_W) '$(srcdir)/pkg_parse.c'; fi`

ipkg_extract_test-pkg_vec.o: pkg_vec.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_vec.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_vec.Tpo" -c -o ipkg_extract_test-pkg_vec.o `test -f 'pkg_vec.c' || echo '$(srcdir)/'`pkg_vec.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_vec.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_vec.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_vec.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_vec.c' object='ipkg_extract_test-pkg_vec.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_vec.o `test -f 'pkg_vec.c' || echo '$(srcdir)/'`pkg_vec.c

ipkg_extract_test-pkg_vec.obj: pkg_vec.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_vec.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_vec.Tpo" -c -o ipkg_extract_test-pkg_vec.obj `if test -f 'pkg_vec.c'; then $(CYGPATH_W) 'pkg_vec.c'; else $(CYGPATH_W) '$(srcdir)/pkg_vec.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_vec.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_vec.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_vec.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_vec.c' object='ipkg_extract_test-pkg_vec.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_vec.obj `if test -f 'pkg_vec.c'; then $(CYGPATH_W) 'pkg_vec.c'; else $(CYGPATH_W) '$(srcdir)/pkg_vec.c'; fi`

ipkg_extract_test-file_util.o: file_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-file_util.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-file_util.Tpo" -c -o ipkg_extract_test-file_util.o `test -f 'file_util.c' || echo '$(srcdir)/'`file_util.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-file_util.Tpo" "$(DEPDIR)/ipkg_extract_test-file_util.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-file_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='file_util.c' object='ipkg_extract_test-file_util.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-file_util.o `test -f 'file_util.c' || echo '$(srcdir)/'`file_util.c

ipkg_extract_test-file_util.obj: file_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-file_util.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-file_util.Tpo" -c -o ipkg_extract_test-file_util.obj `if test -f 'file_util.c'; then $(CYGPATH_W) 'file_util.c'; else $(CYGPATH_W) '$(srcdir)/file_util.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-file_util.Tpo" "$(DEPDIR)/ipkg_extract_test-file_util.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-file_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='file_util.c' object='ipkg_extract_test-file_util.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-file_util.obj `if test -f 'file_util.c'; then $(CYGPATH_W) 'file_util.c'; else $(CYGPATH_W) '$(srcdir)/file_util.c'; fi`

ipkg_extract_test-ipkg_message.o: ipkg_message.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_message.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_message.Tpo" -c -o ipkg_extract_test-ipkg_message.o `test -f 'ipkg_message.c' || echo '$(srcdir)/'`ipkg_message.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_message.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_message.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_message.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_message.c' object='ipkg_extract_test-ipkg_message.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_message.o `test -f 'ipkg_message.c' || echo '$(srcdir)/'`ipkg_message.c

ipkg_extract_test-ipkg_message.obj: ipkg_message.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-ipkg_message.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-ipkg_message.Tpo" -c -o ipkg_extract_test-ipkg_message.obj `if test -f 'ipkg_message.c'; then $(CYGPATH_W) 'ipkg_message.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_message.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-ipkg_message.Tpo" "$(DEPDIR)/ipkg_extract_test-ipkg_message.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-ipkg_message.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_message.c' object='ipkg_extract_test-ipkg_message.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-ipkg_message.obj `if test -f 'ipkg_message.c'; then $(CYGPATH_W) 'ipkg_message.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_message.c'; fi`

ipkg_extract_test-md5.o: md5.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-md5.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-md5.Tpo" -c -o ipkg_extract_test-md5.o `test -f 'md5.c' || echo '$(srcdir)/'`md5.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-md5.Tpo" "$(DEPDIR)/ipkg_extract_test-md5.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-md5.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='md5.c' object='ipkg_extract_test-md5.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-md5.o `test -f 'md5.c' || echo '$(srcdir)/'`md5.c

ipkg_extract_test-md5.obj: md5.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-md5.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-md5.Tpo" -c -o ipkg_extract_test-md5.obj `if test -f 'md5.c'; then $(CYGPATH_W) 'md5.c'; else $(CYGPATH_W) '$(srcdir)/md5.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-md5.Tpo" "$(DEPDIR)/ipkg_extract_test-md5.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-md5.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='md5.c' object='ipkg_extract_test-md5.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-md5.obj `if test -f 'md5.c'; then $(CYGPATH_W) 'md5.c'; else $(CYGPATH_W) '$(srcdir)/md5.c'; fi`

ipkg_extract_test-sprintf_alloc.o: sprintf_alloc.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-sprintf_alloc.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Tpo" -c -o ipkg_extract_test-sprintf_alloc.o `test -f 'sprintf_alloc.c' || echo '$(srcdir)/'`sprintf_alloc.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Tpo" "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sprintf_alloc.c' object='ipkg_extract_test-sprintf_alloc.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-sprintf_alloc.o `test -f 'sprintf_alloc.c' || echo '$(srcdir)/'`sprintf_alloc.c

ipkg_extract_test-sprintf_alloc.obj: sprintf_alloc.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-sprintf_alloc.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Tpo" -c -o ipkg_extract_test-sprintf_alloc.obj `if test -f 'sprintf_alloc.c'; then $(CYGPATH_W) 'sprintf_alloc.c'; else $(CYGPATH_W) '$(srcdir)/sprintf_alloc.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Tpo" "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-sprintf_alloc.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sprintf_alloc.c' object='ipkg_extract_test-sprintf_alloc.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-sprintf_alloc.obj `if test -f 'sprintf_alloc.c'; then $(CYGPATH_W) 'sprintf_alloc.c'; else $(CYGPATH_W) '$(srcdir)/sprintf_alloc.c'; fi`

ipkg_extract_test-str_util.o: str_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-str_util.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-str_util.Tpo" -c -o ipkg_extract_test-str_util.o `test -f 'str_util.c' || echo '$(srcdir)/'`str_util.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-str_util.Tpo" "$(DEPDIR)/ipkg_extract_test-str_util.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-str_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_util.c' object='ipkg_extract_test-str_util.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-str_util.o `test -f 'str_util.c' || echo '$(srcdir)/'`str_util.c

ipkg_extract_test-str_util.obj: str_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-str_util.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-str_util.Tpo" -c -o ipkg_extract_test-str_util.obj `if test -f 'str_util.c'; then $(CYGPATH_W) 'str_util.c'; else $(CYGPATH_W) '$(srcdir)/str_util.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-str_util.Tpo" "$(DEPDIR)/ipkg_extract_test-str_util.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-str_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_util.c' object='ipkg_extract_test-str_util.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-str_util.obj `if test -f 'str_util.c'; then $(CYGPATH_W) 'str_util.c'; else $(CYGPATH_W) '$(srcdir)/str_util.c'; fi`

ipkg_extract_test-xregex.o: xregex.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-xregex.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-xregex.Tpo" -c -o ipkg_extract_test-xregex.o `test -f 'xregex.c' || echo '$(srcdir)/'`xregex.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-xregex.Tpo" "$(DEPDIR)/ipkg_extract_test-xregex.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-xregex.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xregex.c' object='ipkg_extract_test-xregex.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-xregex.o `test -f 'xregex.c' || echo '$(srcdir)/'`xregex.c

ipkg_extract_test-xregex.obj: xregex.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-xregex.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-xregex.Tpo" -c -o ipkg_extract_test-xregex.obj `if test -f 'xregex.c'; then $(CYGPATH_W) 'xregex.c'; else $(CYGPATH_W) '$(srcdir)/xregex.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-xregex.Tpo" "$(DEPDIR)/ipkg_extract_test-xregex.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-xregex.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xregex.c' object='ipkg_extract_test-xregex.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-xregex.obj `if test -f 'xregex.c'; then $(CYGPATH_W) 'xregex.c'; else $(CYGPATH_W) '$(srcdir)/xregex.c'; fi`

ipkg_extract_test-xsystem.o: xsystem.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-xsystem.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-xsystem.Tpo" -c -o ipkg_extract_test-xsystem.o `test -f 'xsystem.c' || echo '$(srcdir)/'`xsystem.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-xsystem.Tpo" "$(DEPDIR)/ipkg_extract_test-xsystem.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-xsystem.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xsystem.c' object='ipkg_extract_test-xsystem.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-xsystem.o `test -f 'xsystem.c' || echo '$(srcdir)/'`xsystem.c

ipkg_extract_test-xsystem.obj: xsystem.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-xsystem.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-xsystem.Tpo" -c -o ipkg_extract_test-xsystem.obj `if test -f 'xsystem.c'; then $(CYGPATH_W) 'xsystem.c'; else $(CYGPATH_W) '$(srcdir)/xsystem.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-xsystem.Tpo" "$(DEPDIR)/ipkg_extract_test-xsystem.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-xsystem.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xsystem.c' object='ipkg_extract_test-xsystem.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-xsystem.obj `if test -f 'xsystem.c'; then $(CYGPATH_W) 'xsystem.c'; else $(CYGPATH_W) '$(srcdir)/xsystem.c'; fi`

ipkg_extract_test-conffile.o: conffile.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-conffile.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-conffile.Tpo" -c -o ipkg_extract_test-conffile.o `test -f 'conffile.c' || echo '$(srcdir)/'`conffile.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-conffile.Tpo" "$(DEPDIR)/ipkg_extract_test-conffile.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-conffile.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile.c' object='ipkg_extract_test-conffile.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-conffile.o `test -f 'conffile.c' || echo '$(srcdir)/'`conffile.c

ipkg_extract_test-conffile.obj: conffile.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-conffile.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-conffile.Tpo" -c -o ipkg_extract_test-conffile.obj `if test -f 'conffile.c'; then $(CYGPATH_W) 'conffile.c'; else $(CYGPATH_W) '$(srcdir)/conffile.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-conffile.Tpo" "$(DEPDIR)/ipkg_extract_test-conffile.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-conffile.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile.c' object='ipkg_extract_test-conffile.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-conffile.obj `if test -f 'conffile.c'; then $(CYGPATH_W) 'conffile.c'; else $(CYGPATH_W) '$(srcdir)/conffile.c'; fi`

ipkg_extract_test-conffile_list.o: conffile_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-conffile_list.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-conffile_list.Tpo" -c -o ipkg_extract_test-conffile_list.o `test -f 'conffile_list.c' || echo '$(srcdir)/'`conffile_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-conffile_list.Tpo" "$(DEPDIR)/ipkg_extract_test-conffile_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-conffile_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile_list.c' object='ipkg_extract_test-conffile_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-conffile_list.o `test -f 'conffile_list.c' || echo '$(srcdir)/'`conffile_list.c

ipkg_extract_test-conffile_list.obj: conffile_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-conffile_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-conffile_list.Tpo" -c -o ipkg_extract_test-conffile_list.obj `if test -f 'conffile_list.c'; then $(CYGPATH_W) 'conffile_list.c'; else $(CYGPATH_W) '$(srcdir)/conffile_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-conffile_list.Tpo" "$(DEPDIR)/ipkg_extract_test-conffile_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-conffile_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile_list.c' object='ipkg_extract_test-conffile_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-conffile_list.obj `if test -f 'conffile_list.c'; then $(CYGPATH_W) 'conffile_list.c'; else $(CYGPATH_W) '$(srcdir)/conffile_list.c'; fi`

ipkg_extract_test-nv_pair.o: nv_pair.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-nv_pair.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-nv_pair.Tpo" -c -o ipkg_extract_test-nv_pair.o `test -f 'nv_pair.c' || echo '$(srcdir)/'`nv_pair.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-nv_pair.Tpo" "$(DEPDIR)/ipkg_extract_test-nv_pair.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-nv_pair.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair.c' object='ipkg_extract_test-nv_pair.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-nv_pair.o `test -f 'nv_pair.c' || echo '$(srcdir)/'`nv_pair.c

ipkg_extract_test-nv_pair.obj: nv_pair.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-nv_pair.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-nv_pair.Tpo" -c -o ipkg_extract_test-nv_pair.obj `if test -f 'nv_pair.c'; then $(CYGPATH_W) 'nv_pair.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-nv_pair.Tpo" "$(DEPDIR)/ipkg_extract_test-nv_pair.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-nv_pair.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair.c' object='ipkg_extract_test-nv_pair.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-nv_pair.obj `if test -f 'nv_pair.c'; then $(CYGPATH_W) 'nv_pair.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair.c'; fi`

ipkg_extract_test-nv_pair_list.o: nv_pair_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-nv_pair_list.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Tpo" -c -o ipkg_extract_test-nv_pair_list.o `test -f 'nv_pair_list.c' || echo '$(srcdir)/'`nv_pair_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Tpo" "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair_list.c' object='ipkg_extract_test-nv_pair_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-nv_pair_list.o `test -f 'nv_pair_list.c' || echo '$(srcdir)/'`nv_pair_list.c

ipkg_extract_test-nv_pair_list.obj: nv_pair_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-nv_pair_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Tpo" -c -o ipkg_extract_test-nv_pair_list.obj `if test -f 'nv_pair_list.c'; then $(CYGPATH_W) 'nv_pair_list.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Tpo" "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-nv_pair_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair_list.c' object='ipkg_extract_test-nv_pair_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-nv_pair_list.obj `if test -f 'nv_pair_list.c'; then $(CYGPATH_W) 'nv_pair_list.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair_list.c'; fi`

ipkg_extract_test-pkg_dest.o: pkg_dest.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_dest.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_dest.Tpo" -c -o ipkg_extract_test-pkg_dest.o `test -f 'pkg_dest.c' || echo '$(srcdir)/'`pkg_dest.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_dest.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_dest.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_dest.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest.c' object='ipkg_extract_test-pkg_dest.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_dest.o `test -f 'pkg_dest.c' || echo '$(srcdir)/'`pkg_dest.c

ipkg_extract_test-pkg_dest.obj: pkg_dest.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_dest.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_dest.Tpo" -c -o ipkg_extract_test-pkg_dest.obj `if test -f 'pkg_dest.c'; then $(CYGPATH_W) 'pkg_dest.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_dest.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_dest.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_dest.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest.c' object='ipkg_extract_test-pkg_dest.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_dest.obj `if test -f 'pkg_dest.c'; then $(CYGPATH_W) 'pkg_dest.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest.c'; fi`

ipkg_extract_test-pkg_dest_list.o: pkg_dest_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_dest_list.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Tpo" -c -o ipkg_extract_test-pkg_dest_list.o `test -f 'pkg_dest_list.c' || echo '$(srcdir)/'`pkg_dest_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest_list.c' object='ipkg_extract_test-pkg_dest_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_dest_list.o `test -f 'pkg_dest_list.c' || echo '$(srcdir)/'`pkg_dest_list.c

ipkg_extract_test-pkg_dest_list.obj: pkg_dest_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_dest_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Tpo" -c -o ipkg_extract_test-pkg_dest_list.obj `if test -f 'pkg_dest_list.c'; then $(CYGPATH_W) 'pkg_dest_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_dest_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest_list.c' object='ipkg_extract_test-pkg_dest_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_dest_list.obj `if test -f 'pkg_dest_list.c'; then $(CYGPATH_W) 'pkg_dest_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest_list.c'; fi`

ipkg_extract_test-pkg_src.o: pkg_src.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_src.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_src.Tpo" -c -o ipkg_extract_test-pkg_src.o `test -f 'pkg_src.c' || echo '$(srcdir)/'`pkg_src.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_src.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_src.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_src.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src.c' object='ipkg_extract_test-pkg_src.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_src.o `test -f 'pkg_src.c' || echo '$(srcdir)/'`pkg_src.c

ipkg_extract_test-pkg_src.obj: pkg_src.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_src.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_src.Tpo" -c -o ipkg_extract_test-pkg_src.obj `if test -f 'pkg_src.c'; then $(CYGPATH_W) 'pkg_src.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_src.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_src.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_src.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src.c' object='ipkg_extract_test-pkg_src.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_src.obj `if test -f 'pkg_src.c'; then $(CYGPATH_W) 'pkg_src.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src.c'; fi`

ipkg_extract_test-pkg_src_list.o: pkg_src_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_src_list.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Tpo" -c -o ipkg_extract_test-pkg_src_list.o `test -f 'pkg_src_list.c' || echo '$(srcdir)/'`pkg_src_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src_list.c' object='ipkg_extract_test-pkg_src_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_src_list.o `test -f 'pkg_src_list.c' || echo '$(srcdir)/'`pkg_src_list.c

ipkg_extract_test-pkg_src_list.obj: pkg_src_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-pkg_src_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Tpo" -c -o ipkg_extract_test-pkg_src_list.obj `if test -f 'pkg_src_list.c'; then $(CYGPATH_W) 'pkg_src_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Tpo" "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-pkg_src_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src_list.c' object='ipkg_extract_test-pkg_src_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-pkg_src_list.obj `if test -f 'pkg_src_list.c'; then $(CYGPATH_W) 'pkg_src_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src_list.c'; fi`

ipkg_extract_test-str_list.o: str_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-str_list.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-str_list.Tpo" -c -o ipkg_extract_test-str_list.o `test -f 'str_list.c' || echo '$(srcdir)/'`str_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-str_list.Tpo" "$(DEPDIR)/ipkg_extract_test-str_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-str_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_list.c' object='ipkg_extract_test-str_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-str_list.o `test -f 'str_list.c' || echo '$(srcdir)/'`str_list.c

ipkg_extract_test-str_list.obj: str_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-str_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-str_list.Tpo" -c -o ipkg_extract_test-str_list.obj `if test -f 'str_list.c'; then $(CYGPATH_W) 'str_list.c'; else $(CYGPATH_W) '$(srcdir)/str_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-str_list.Tpo" "$(DEPDIR)/ipkg_extract_test-str_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-str_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_list.c' object='ipkg_extract_test-str_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-str_list.obj `if test -f 'str_list.c'; then $(CYGPATH_W) 'str_list.c'; else $(CYGPATH_W) '$(srcdir)/str_list.c'; fi`

ipkg_extract_test-void_list.o: void_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-void_list.o -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-void_list.Tpo" -c -o ipkg_extract_test-void_list.o `test -f 'void_list.c' || echo '$(srcdir)/'`void_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-void_list.Tpo" "$(DEPDIR)/ipkg_extract_test-void_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-void_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='void_list.c' object='ipkg_extract_test-void_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-void_list.o `test -f 'void_list.c' || echo '$(srcdir)/'`void_list.c

ipkg_extract_test-void_list.obj: void_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -MT ipkg_extract_test-void_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_extract_test-void_list.Tpo" -c -o ipkg_extract_test-void_list.obj `if test -f 'void_list.c'; then $(CYGPATH_W) 'void_list.c'; else $(CYGPATH_W) '$(srcdir)/void_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_extract_test-void_list.Tpo" "$(DEPDIR)/ipkg_extract_test-void_list.Po"; else rm -f "$(DEPDIR)/ipkg_extract_test-void_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='void_list.c' object='ipkg_extract_test-void_list.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) $(ipkg_extract_test_CFLAGS) $(CFLAGS) -c -o ipkg_extract_test-void_list.obj `if test -f 'void_list.c'; then $(CYGPATH_W) 'void_list.c'; else $(CYGPATH_W) '$(srcdir)/void_list.c'; fi`

ipkg_hash_test-ipkg_hash_test.o: ipkg_hash_test.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_hash_test.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Tpo" -c -o ipkg_hash_test-ipkg_hash_test.o `test -f 'ipkg_hash_test.c' || echo '$(srcdir)/'`ipkg_hash_test.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_hash_test.c' object='ipkg_hash_test-ipkg_hash_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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_hash_test.o `test -f 'ipkg_hash_test.c' || echo '$(srcdir)/'`ipkg_hash_test.c

ipkg_hash_test-ipkg_hash_test.obj: ipkg_hash_test.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_hash_test.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Tpo" -c -o ipkg_hash_test-ipkg_hash_test.obj `if test -f 'ipkg_hash_test.c'; then $(CYGPATH_W) 'ipkg_hash_test.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_hash_test.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_hash_test.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_hash_test.c' object='ipkg_hash_test-ipkg_hash_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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_hash_test.obj `if test -f 'ipkg_hash_test.c'; then $(CYGPATH_W) 'ipkg_hash_test.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_hash_test.c'; fi`

ipkg_hash_test-ipkg_conf.o: ipkg_conf.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_conf.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Tpo" -c -o ipkg_hash_test-ipkg_conf.o `test -f 'ipkg_conf.c' || echo '$(srcdir)/'`ipkg_conf.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_conf.c' object='ipkg_hash_test-ipkg_conf.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_conf.o `test -f 'ipkg_conf.c' || echo '$(srcdir)/'`ipkg_conf.c

ipkg_hash_test-ipkg_conf.obj: ipkg_conf.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_conf.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Tpo" -c -o ipkg_hash_test-ipkg_conf.obj `if test -f 'ipkg_conf.c'; then $(CYGPATH_W) 'ipkg_conf.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_conf.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_conf.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_conf.c' object='ipkg_hash_test-ipkg_conf.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_conf.obj `if test -f 'ipkg_conf.c'; then $(CYGPATH_W) 'ipkg_conf.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_conf.c'; fi`

ipkg_hash_test-ipkg_utils.o: ipkg_utils.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_utils.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Tpo" -c -o ipkg_hash_test-ipkg_utils.o `test -f 'ipkg_utils.c' || echo '$(srcdir)/'`ipkg_utils.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_utils.c' object='ipkg_hash_test-ipkg_utils.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_utils.o `test -f 'ipkg_utils.c' || echo '$(srcdir)/'`ipkg_utils.c

ipkg_hash_test-ipkg_utils.obj: ipkg_utils.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_utils.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Tpo" -c -o ipkg_hash_test-ipkg_utils.obj `if test -f 'ipkg_utils.c'; then $(CYGPATH_W) 'ipkg_utils.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_utils.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_utils.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_utils.c' object='ipkg_hash_test-ipkg_utils.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_utils.obj `if test -f 'ipkg_utils.c'; then $(CYGPATH_W) 'ipkg_utils.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_utils.c'; fi`

ipkg_hash_test-pkg.o: pkg.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg.Tpo" -c -o ipkg_hash_test-pkg.o `test -f 'pkg.c' || echo '$(srcdir)/'`pkg.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg.c' object='ipkg_hash_test-pkg.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg.o `test -f 'pkg.c' || echo '$(srcdir)/'`pkg.c

ipkg_hash_test-pkg.obj: pkg.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg.Tpo" -c -o ipkg_hash_test-pkg.obj `if test -f 'pkg.c'; then $(CYGPATH_W) 'pkg.c'; else $(CYGPATH_W) '$(srcdir)/pkg.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg.c' object='ipkg_hash_test-pkg.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg.obj `if test -f 'pkg.c'; then $(CYGPATH_W) 'pkg.c'; else $(CYGPATH_W) '$(srcdir)/pkg.c'; fi`

ipkg_hash_test-pkg_depends.o: pkg_depends.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_depends.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_depends.Tpo" -c -o ipkg_hash_test-pkg_depends.o `test -f 'pkg_depends.c' || echo '$(srcdir)/'`pkg_depends.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_depends.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_depends.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_depends.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_depends.c' object='ipkg_hash_test-pkg_depends.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_depends.o `test -f 'pkg_depends.c' || echo '$(srcdir)/'`pkg_depends.c

ipkg_hash_test-pkg_depends.obj: pkg_depends.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_depends.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_depends.Tpo" -c -o ipkg_hash_test-pkg_depends.obj `if test -f 'pkg_depends.c'; then $(CYGPATH_W) 'pkg_depends.c'; else $(CYGPATH_W) '$(srcdir)/pkg_depends.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_depends.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_depends.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_depends.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_depends.c' object='ipkg_hash_test-pkg_depends.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_depends.obj `if test -f 'pkg_depends.c'; then $(CYGPATH_W) 'pkg_depends.c'; else $(CYGPATH_W) '$(srcdir)/pkg_depends.c'; fi`

ipkg_hash_test-pkg_extract.o: pkg_extract.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_extract.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_extract.Tpo" -c -o ipkg_hash_test-pkg_extract.o `test -f 'pkg_extract.c' || echo '$(srcdir)/'`pkg_extract.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_extract.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_extract.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_extract.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_extract.c' object='ipkg_hash_test-pkg_extract.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_extract.o `test -f 'pkg_extract.c' || echo '$(srcdir)/'`pkg_extract.c

ipkg_hash_test-pkg_extract.obj: pkg_extract.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_extract.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_extract.Tpo" -c -o ipkg_hash_test-pkg_extract.obj `if test -f 'pkg_extract.c'; then $(CYGPATH_W) 'pkg_extract.c'; else $(CYGPATH_W) '$(srcdir)/pkg_extract.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_extract.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_extract.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_extract.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_extract.c' object='ipkg_hash_test-pkg_extract.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_extract.obj `if test -f 'pkg_extract.c'; then $(CYGPATH_W) 'pkg_extract.c'; else $(CYGPATH_W) '$(srcdir)/pkg_extract.c'; fi`

ipkg_hash_test-hash_table.o: hash_table.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-hash_table.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-hash_table.Tpo" -c -o ipkg_hash_test-hash_table.o `test -f 'hash_table.c' || echo '$(srcdir)/'`hash_table.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-hash_table.Tpo" "$(DEPDIR)/ipkg_hash_test-hash_table.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-hash_table.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='hash_table.c' object='ipkg_hash_test-hash_table.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-hash_table.o `test -f 'hash_table.c' || echo '$(srcdir)/'`hash_table.c

ipkg_hash_test-hash_table.obj: hash_table.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-hash_table.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-hash_table.Tpo" -c -o ipkg_hash_test-hash_table.obj `if test -f 'hash_table.c'; then $(CYGPATH_W) 'hash_table.c'; else $(CYGPATH_W) '$(srcdir)/hash_table.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-hash_table.Tpo" "$(DEPDIR)/ipkg_hash_test-hash_table.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-hash_table.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='hash_table.c' object='ipkg_hash_test-hash_table.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-hash_table.obj `if test -f 'hash_table.c'; then $(CYGPATH_W) 'hash_table.c'; else $(CYGPATH_W) '$(srcdir)/hash_table.c'; fi`

ipkg_hash_test-pkg_hash.o: pkg_hash.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_hash.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_hash.Tpo" -c -o ipkg_hash_test-pkg_hash.o `test -f 'pkg_hash.c' || echo '$(srcdir)/'`pkg_hash.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_hash.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_hash.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_hash.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_hash.c' object='ipkg_hash_test-pkg_hash.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_hash.o `test -f 'pkg_hash.c' || echo '$(srcdir)/'`pkg_hash.c

ipkg_hash_test-pkg_hash.obj: pkg_hash.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_hash.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_hash.Tpo" -c -o ipkg_hash_test-pkg_hash.obj `if test -f 'pkg_hash.c'; then $(CYGPATH_W) 'pkg_hash.c'; else $(CYGPATH_W) '$(srcdir)/pkg_hash.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_hash.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_hash.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_hash.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_hash.c' object='ipkg_hash_test-pkg_hash.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_hash.obj `if test -f 'pkg_hash.c'; then $(CYGPATH_W) 'pkg_hash.c'; else $(CYGPATH_W) '$(srcdir)/pkg_hash.c'; fi`

ipkg_hash_test-pkg_parse.o: pkg_parse.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_parse.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_parse.Tpo" -c -o ipkg_hash_test-pkg_parse.o `test -f 'pkg_parse.c' || echo '$(srcdir)/'`pkg_parse.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_parse.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_parse.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_parse.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_parse.c' object='ipkg_hash_test-pkg_parse.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_parse.o `test -f 'pkg_parse.c' || echo '$(srcdir)/'`pkg_parse.c

ipkg_hash_test-pkg_parse.obj: pkg_parse.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_parse.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_parse.Tpo" -c -o ipkg_hash_test-pkg_parse.obj `if test -f 'pkg_parse.c'; then $(CYGPATH_W) 'pkg_parse.c'; else $(CYGPATH_W) '$(srcdir)/pkg_parse.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_parse.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_parse.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_parse.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_parse.c' object='ipkg_hash_test-pkg_parse.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_parse.obj `if test -f 'pkg_parse.c'; then $(CYGPATH_W) 'pkg_parse.c'; else $(CYGPATH_W) '$(srcdir)/pkg_parse.c'; fi`

ipkg_hash_test-pkg_vec.o: pkg_vec.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_vec.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_vec.Tpo" -c -o ipkg_hash_test-pkg_vec.o `test -f 'pkg_vec.c' || echo '$(srcdir)/'`pkg_vec.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_vec.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_vec.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_vec.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_vec.c' object='ipkg_hash_test-pkg_vec.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_vec.o `test -f 'pkg_vec.c' || echo '$(srcdir)/'`pkg_vec.c

ipkg_hash_test-pkg_vec.obj: pkg_vec.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_vec.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_vec.Tpo" -c -o ipkg_hash_test-pkg_vec.obj `if test -f 'pkg_vec.c'; then $(CYGPATH_W) 'pkg_vec.c'; else $(CYGPATH_W) '$(srcdir)/pkg_vec.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_vec.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_vec.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_vec.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_vec.c' object='ipkg_hash_test-pkg_vec.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_vec.obj `if test -f 'pkg_vec.c'; then $(CYGPATH_W) 'pkg_vec.c'; else $(CYGPATH_W) '$(srcdir)/pkg_vec.c'; fi`

ipkg_hash_test-file_util.o: file_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-file_util.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-file_util.Tpo" -c -o ipkg_hash_test-file_util.o `test -f 'file_util.c' || echo '$(srcdir)/'`file_util.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-file_util.Tpo" "$(DEPDIR)/ipkg_hash_test-file_util.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-file_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='file_util.c' object='ipkg_hash_test-file_util.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-file_util.o `test -f 'file_util.c' || echo '$(srcdir)/'`file_util.c

ipkg_hash_test-file_util.obj: file_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-file_util.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-file_util.Tpo" -c -o ipkg_hash_test-file_util.obj `if test -f 'file_util.c'; then $(CYGPATH_W) 'file_util.c'; else $(CYGPATH_W) '$(srcdir)/file_util.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-file_util.Tpo" "$(DEPDIR)/ipkg_hash_test-file_util.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-file_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='file_util.c' object='ipkg_hash_test-file_util.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-file_util.obj `if test -f 'file_util.c'; then $(CYGPATH_W) 'file_util.c'; else $(CYGPATH_W) '$(srcdir)/file_util.c'; fi`

ipkg_hash_test-ipkg_message.o: ipkg_message.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_message.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_message.Tpo" -c -o ipkg_hash_test-ipkg_message.o `test -f 'ipkg_message.c' || echo '$(srcdir)/'`ipkg_message.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_message.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_message.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_message.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_message.c' object='ipkg_hash_test-ipkg_message.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_message.o `test -f 'ipkg_message.c' || echo '$(srcdir)/'`ipkg_message.c

ipkg_hash_test-ipkg_message.obj: ipkg_message.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-ipkg_message.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-ipkg_message.Tpo" -c -o ipkg_hash_test-ipkg_message.obj `if test -f 'ipkg_message.c'; then $(CYGPATH_W) 'ipkg_message.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_message.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-ipkg_message.Tpo" "$(DEPDIR)/ipkg_hash_test-ipkg_message.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-ipkg_message.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='ipkg_message.c' object='ipkg_hash_test-ipkg_message.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-ipkg_message.obj `if test -f 'ipkg_message.c'; then $(CYGPATH_W) 'ipkg_message.c'; else $(CYGPATH_W) '$(srcdir)/ipkg_message.c'; fi`

ipkg_hash_test-md5.o: md5.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-md5.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-md5.Tpo" -c -o ipkg_hash_test-md5.o `test -f 'md5.c' || echo '$(srcdir)/'`md5.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-md5.Tpo" "$(DEPDIR)/ipkg_hash_test-md5.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-md5.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='md5.c' object='ipkg_hash_test-md5.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-md5.o `test -f 'md5.c' || echo '$(srcdir)/'`md5.c

ipkg_hash_test-md5.obj: md5.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-md5.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-md5.Tpo" -c -o ipkg_hash_test-md5.obj `if test -f 'md5.c'; then $(CYGPATH_W) 'md5.c'; else $(CYGPATH_W) '$(srcdir)/md5.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-md5.Tpo" "$(DEPDIR)/ipkg_hash_test-md5.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-md5.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='md5.c' object='ipkg_hash_test-md5.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-md5.obj `if test -f 'md5.c'; then $(CYGPATH_W) 'md5.c'; else $(CYGPATH_W) '$(srcdir)/md5.c'; fi`

ipkg_hash_test-sprintf_alloc.o: sprintf_alloc.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-sprintf_alloc.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Tpo" -c -o ipkg_hash_test-sprintf_alloc.o `test -f 'sprintf_alloc.c' || echo '$(srcdir)/'`sprintf_alloc.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Tpo" "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sprintf_alloc.c' object='ipkg_hash_test-sprintf_alloc.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-sprintf_alloc.o `test -f 'sprintf_alloc.c' || echo '$(srcdir)/'`sprintf_alloc.c

ipkg_hash_test-sprintf_alloc.obj: sprintf_alloc.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-sprintf_alloc.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Tpo" -c -o ipkg_hash_test-sprintf_alloc.obj `if test -f 'sprintf_alloc.c'; then $(CYGPATH_W) 'sprintf_alloc.c'; else $(CYGPATH_W) '$(srcdir)/sprintf_alloc.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Tpo" "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-sprintf_alloc.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='sprintf_alloc.c' object='ipkg_hash_test-sprintf_alloc.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-sprintf_alloc.obj `if test -f 'sprintf_alloc.c'; then $(CYGPATH_W) 'sprintf_alloc.c'; else $(CYGPATH_W) '$(srcdir)/sprintf_alloc.c'; fi`

ipkg_hash_test-str_util.o: str_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-str_util.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-str_util.Tpo" -c -o ipkg_hash_test-str_util.o `test -f 'str_util.c' || echo '$(srcdir)/'`str_util.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-str_util.Tpo" "$(DEPDIR)/ipkg_hash_test-str_util.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-str_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_util.c' object='ipkg_hash_test-str_util.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-str_util.o `test -f 'str_util.c' || echo '$(srcdir)/'`str_util.c

ipkg_hash_test-str_util.obj: str_util.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-str_util.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-str_util.Tpo" -c -o ipkg_hash_test-str_util.obj `if test -f 'str_util.c'; then $(CYGPATH_W) 'str_util.c'; else $(CYGPATH_W) '$(srcdir)/str_util.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-str_util.Tpo" "$(DEPDIR)/ipkg_hash_test-str_util.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-str_util.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_util.c' object='ipkg_hash_test-str_util.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-str_util.obj `if test -f 'str_util.c'; then $(CYGPATH_W) 'str_util.c'; else $(CYGPATH_W) '$(srcdir)/str_util.c'; fi`

ipkg_hash_test-xregex.o: xregex.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-xregex.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-xregex.Tpo" -c -o ipkg_hash_test-xregex.o `test -f 'xregex.c' || echo '$(srcdir)/'`xregex.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-xregex.Tpo" "$(DEPDIR)/ipkg_hash_test-xregex.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-xregex.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xregex.c' object='ipkg_hash_test-xregex.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-xregex.o `test -f 'xregex.c' || echo '$(srcdir)/'`xregex.c

ipkg_hash_test-xregex.obj: xregex.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-xregex.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-xregex.Tpo" -c -o ipkg_hash_test-xregex.obj `if test -f 'xregex.c'; then $(CYGPATH_W) 'xregex.c'; else $(CYGPATH_W) '$(srcdir)/xregex.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-xregex.Tpo" "$(DEPDIR)/ipkg_hash_test-xregex.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-xregex.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xregex.c' object='ipkg_hash_test-xregex.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-xregex.obj `if test -f 'xregex.c'; then $(CYGPATH_W) 'xregex.c'; else $(CYGPATH_W) '$(srcdir)/xregex.c'; fi`

ipkg_hash_test-xsystem.o: xsystem.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-xsystem.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-xsystem.Tpo" -c -o ipkg_hash_test-xsystem.o `test -f 'xsystem.c' || echo '$(srcdir)/'`xsystem.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-xsystem.Tpo" "$(DEPDIR)/ipkg_hash_test-xsystem.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-xsystem.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xsystem.c' object='ipkg_hash_test-xsystem.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-xsystem.o `test -f 'xsystem.c' || echo '$(srcdir)/'`xsystem.c

ipkg_hash_test-xsystem.obj: xsystem.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-xsystem.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-xsystem.Tpo" -c -o ipkg_hash_test-xsystem.obj `if test -f 'xsystem.c'; then $(CYGPATH_W) 'xsystem.c'; else $(CYGPATH_W) '$(srcdir)/xsystem.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-xsystem.Tpo" "$(DEPDIR)/ipkg_hash_test-xsystem.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-xsystem.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='xsystem.c' object='ipkg_hash_test-xsystem.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-xsystem.obj `if test -f 'xsystem.c'; then $(CYGPATH_W) 'xsystem.c'; else $(CYGPATH_W) '$(srcdir)/xsystem.c'; fi`

ipkg_hash_test-conffile.o: conffile.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-conffile.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-conffile.Tpo" -c -o ipkg_hash_test-conffile.o `test -f 'conffile.c' || echo '$(srcdir)/'`conffile.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-conffile.Tpo" "$(DEPDIR)/ipkg_hash_test-conffile.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-conffile.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile.c' object='ipkg_hash_test-conffile.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-conffile.o `test -f 'conffile.c' || echo '$(srcdir)/'`conffile.c

ipkg_hash_test-conffile.obj: conffile.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-conffile.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-conffile.Tpo" -c -o ipkg_hash_test-conffile.obj `if test -f 'conffile.c'; then $(CYGPATH_W) 'conffile.c'; else $(CYGPATH_W) '$(srcdir)/conffile.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-conffile.Tpo" "$(DEPDIR)/ipkg_hash_test-conffile.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-conffile.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile.c' object='ipkg_hash_test-conffile.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-conffile.obj `if test -f 'conffile.c'; then $(CYGPATH_W) 'conffile.c'; else $(CYGPATH_W) '$(srcdir)/conffile.c'; fi`

ipkg_hash_test-conffile_list.o: conffile_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-conffile_list.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-conffile_list.Tpo" -c -o ipkg_hash_test-conffile_list.o `test -f 'conffile_list.c' || echo '$(srcdir)/'`conffile_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-conffile_list.Tpo" "$(DEPDIR)/ipkg_hash_test-conffile_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-conffile_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile_list.c' object='ipkg_hash_test-conffile_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-conffile_list.o `test -f 'conffile_list.c' || echo '$(srcdir)/'`conffile_list.c

ipkg_hash_test-conffile_list.obj: conffile_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-conffile_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-conffile_list.Tpo" -c -o ipkg_hash_test-conffile_list.obj `if test -f 'conffile_list.c'; then $(CYGPATH_W) 'conffile_list.c'; else $(CYGPATH_W) '$(srcdir)/conffile_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-conffile_list.Tpo" "$(DEPDIR)/ipkg_hash_test-conffile_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-conffile_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='conffile_list.c' object='ipkg_hash_test-conffile_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-conffile_list.obj `if test -f 'conffile_list.c'; then $(CYGPATH_W) 'conffile_list.c'; else $(CYGPATH_W) '$(srcdir)/conffile_list.c'; fi`

ipkg_hash_test-nv_pair.o: nv_pair.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-nv_pair.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-nv_pair.Tpo" -c -o ipkg_hash_test-nv_pair.o `test -f 'nv_pair.c' || echo '$(srcdir)/'`nv_pair.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-nv_pair.Tpo" "$(DEPDIR)/ipkg_hash_test-nv_pair.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-nv_pair.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair.c' object='ipkg_hash_test-nv_pair.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-nv_pair.o `test -f 'nv_pair.c' || echo '$(srcdir)/'`nv_pair.c

ipkg_hash_test-nv_pair.obj: nv_pair.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-nv_pair.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-nv_pair.Tpo" -c -o ipkg_hash_test-nv_pair.obj `if test -f 'nv_pair.c'; then $(CYGPATH_W) 'nv_pair.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-nv_pair.Tpo" "$(DEPDIR)/ipkg_hash_test-nv_pair.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-nv_pair.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair.c' object='ipkg_hash_test-nv_pair.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-nv_pair.obj `if test -f 'nv_pair.c'; then $(CYGPATH_W) 'nv_pair.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair.c'; fi`

ipkg_hash_test-nv_pair_list.o: nv_pair_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-nv_pair_list.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Tpo" -c -o ipkg_hash_test-nv_pair_list.o `test -f 'nv_pair_list.c' || echo '$(srcdir)/'`nv_pair_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Tpo" "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair_list.c' object='ipkg_hash_test-nv_pair_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-nv_pair_list.o `test -f 'nv_pair_list.c' || echo '$(srcdir)/'`nv_pair_list.c

ipkg_hash_test-nv_pair_list.obj: nv_pair_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-nv_pair_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Tpo" -c -o ipkg_hash_test-nv_pair_list.obj `if test -f 'nv_pair_list.c'; then $(CYGPATH_W) 'nv_pair_list.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Tpo" "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-nv_pair_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='nv_pair_list.c' object='ipkg_hash_test-nv_pair_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-nv_pair_list.obj `if test -f 'nv_pair_list.c'; then $(CYGPATH_W) 'nv_pair_list.c'; else $(CYGPATH_W) '$(srcdir)/nv_pair_list.c'; fi`

ipkg_hash_test-pkg_dest.o: pkg_dest.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_dest.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_dest.Tpo" -c -o ipkg_hash_test-pkg_dest.o `test -f 'pkg_dest.c' || echo '$(srcdir)/'`pkg_dest.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_dest.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_dest.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_dest.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest.c' object='ipkg_hash_test-pkg_dest.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_dest.o `test -f 'pkg_dest.c' || echo '$(srcdir)/'`pkg_dest.c

ipkg_hash_test-pkg_dest.obj: pkg_dest.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_dest.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_dest.Tpo" -c -o ipkg_hash_test-pkg_dest.obj `if test -f 'pkg_dest.c'; then $(CYGPATH_W) 'pkg_dest.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_dest.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_dest.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_dest.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest.c' object='ipkg_hash_test-pkg_dest.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_dest.obj `if test -f 'pkg_dest.c'; then $(CYGPATH_W) 'pkg_dest.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest.c'; fi`

ipkg_hash_test-pkg_dest_list.o: pkg_dest_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_dest_list.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Tpo" -c -o ipkg_hash_test-pkg_dest_list.o `test -f 'pkg_dest_list.c' || echo '$(srcdir)/'`pkg_dest_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest_list.c' object='ipkg_hash_test-pkg_dest_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_dest_list.o `test -f 'pkg_dest_list.c' || echo '$(srcdir)/'`pkg_dest_list.c

ipkg_hash_test-pkg_dest_list.obj: pkg_dest_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_dest_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Tpo" -c -o ipkg_hash_test-pkg_dest_list.obj `if test -f 'pkg_dest_list.c'; then $(CYGPATH_W) 'pkg_dest_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_dest_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_dest_list.c' object='ipkg_hash_test-pkg_dest_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_dest_list.obj `if test -f 'pkg_dest_list.c'; then $(CYGPATH_W) 'pkg_dest_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_dest_list.c'; fi`

ipkg_hash_test-pkg_src.o: pkg_src.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_src.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_src.Tpo" -c -o ipkg_hash_test-pkg_src.o `test -f 'pkg_src.c' || echo '$(srcdir)/'`pkg_src.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_src.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_src.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_src.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src.c' object='ipkg_hash_test-pkg_src.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_src.o `test -f 'pkg_src.c' || echo '$(srcdir)/'`pkg_src.c

ipkg_hash_test-pkg_src.obj: pkg_src.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_src.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_src.Tpo" -c -o ipkg_hash_test-pkg_src.obj `if test -f 'pkg_src.c'; then $(CYGPATH_W) 'pkg_src.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_src.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_src.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_src.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src.c' object='ipkg_hash_test-pkg_src.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_src.obj `if test -f 'pkg_src.c'; then $(CYGPATH_W) 'pkg_src.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src.c'; fi`

ipkg_hash_test-pkg_src_list.o: pkg_src_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_src_list.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Tpo" -c -o ipkg_hash_test-pkg_src_list.o `test -f 'pkg_src_list.c' || echo '$(srcdir)/'`pkg_src_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src_list.c' object='ipkg_hash_test-pkg_src_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_src_list.o `test -f 'pkg_src_list.c' || echo '$(srcdir)/'`pkg_src_list.c

ipkg_hash_test-pkg_src_list.obj: pkg_src_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-pkg_src_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Tpo" -c -o ipkg_hash_test-pkg_src_list.obj `if test -f 'pkg_src_list.c'; then $(CYGPATH_W) 'pkg_src_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Tpo" "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-pkg_src_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='pkg_src_list.c' object='ipkg_hash_test-pkg_src_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-pkg_src_list.obj `if test -f 'pkg_src_list.c'; then $(CYGPATH_W) 'pkg_src_list.c'; else $(CYGPATH_W) '$(srcdir)/pkg_src_list.c'; fi`

ipkg_hash_test-str_list.o: str_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-str_list.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-str_list.Tpo" -c -o ipkg_hash_test-str_list.o `test -f 'str_list.c' || echo '$(srcdir)/'`str_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-str_list.Tpo" "$(DEPDIR)/ipkg_hash_test-str_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-str_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_list.c' object='ipkg_hash_test-str_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-str_list.o `test -f 'str_list.c' || echo '$(srcdir)/'`str_list.c

ipkg_hash_test-str_list.obj: str_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-str_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-str_list.Tpo" -c -o ipkg_hash_test-str_list.obj `if test -f 'str_list.c'; then $(CYGPATH_W) 'str_list.c'; else $(CYGPATH_W) '$(srcdir)/str_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-str_list.Tpo" "$(DEPDIR)/ipkg_hash_test-str_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-str_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='str_list.c' object='ipkg_hash_test-str_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-str_list.obj `if test -f 'str_list.c'; then $(CYGPATH_W) 'str_list.c'; else $(CYGPATH_W) '$(srcdir)/str_list.c'; fi`

ipkg_hash_test-void_list.o: void_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-void_list.o -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-void_list.Tpo" -c -o ipkg_hash_test-void_list.o `test -f 'void_list.c' || echo '$(srcdir)/'`void_list.c; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-void_list.Tpo" "$(DEPDIR)/ipkg_hash_test-void_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-void_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='void_list.c' object='ipkg_hash_test-void_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-void_list.o `test -f 'void_list.c' || echo '$(srcdir)/'`void_list.c

ipkg_hash_test-void_list.obj: void_list.c
@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -MT ipkg_hash_test-void_list.obj -MD -MP -MF "$(DEPDIR)/ipkg_hash_test-void_list.Tpo" -c -o ipkg_hash_test-void_list.obj `if test -f 'void_list.c'; then $(CYGPATH_W) 'void_list.c'; else $(CYGPATH_W) '$(srcdir)/void_list.c'; fi`; \
@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/ipkg_hash_test-void_list.Tpo" "$(DEPDIR)/ipkg_hash_test-void_list.Po"; else rm -f "$(DEPDIR)/ipkg_hash_test-void_list.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='void_list.c' object='ipkg_hash_test-void_list.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) $(ipkg_hash_test_CFLAGS) $(CFLAGS) -c -o ipkg_hash_test-void_list.obj `if test -f 'void_list.c'; then $(CYGPATH_W) 'void_list.c'; else $(CYGPATH_W) '$(srcdir)/void_list.c'; fi`

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

distclean-libtool:
	-rm -f libtool
uninstall-info-am:
install-interceptDATA: $(intercept_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(interceptdir)" || $(mkdir_p) "$(DESTDIR)$(interceptdir)"
	@list='$(intercept_DATA)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(interceptDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(interceptdir)/$$f'"; \
	  $(interceptDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(interceptdir)/$$f"; \
	done

uninstall-interceptDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(intercept_DATA)'; for p in $$list; do \
	  f=$(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(interceptdir)/$$f'"; \
	  rm -f "$(DESTDIR)$(interceptdir)/$$f"; \
	done
install-libipkg_includeHEADERS: $(libipkg_include_HEADERS)
	@$(NORMAL_INSTALL)
	test -z "$(libipkg_includedir)" || $(mkdir_p) "$(DESTDIR)$(libipkg_includedir)"
	@list='$(libipkg_include_HEADERS)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(libipkg_includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libipkg_includedir)/$$f'"; \
	  $(libipkg_includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libipkg_includedir)/$$f"; \
	done

uninstall-libipkg_includeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(libipkg_include_HEADERS)'; for p in $$list; do \
	  f=$(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(libipkg_includedir)/$$f'"; \
	  rm -f "$(DESTDIR)$(libipkg_includedir)/$$f"; \
	done

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
#     (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
	@failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	target=`echo $@ | sed s/-recursive//`; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    dot_seen=yes; \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done; \
	if test "$$dot_seen" = "no"; then \
	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
	fi; test -z "$$fail"

mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
	@failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	case "$@" in \
	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
	  *) list='$(SUBDIRS)' ;; \
	esac; \
	rev=''; for subdir in $$list; do \
	  if test "$$subdir" = "."; then :; else \
	    rev="$$subdir $$rev"; \
	  fi; \
	done; \
	rev="$$rev ."; \
	target=`echo $@ | sed s/-recursive//`; \
	for subdir in $$rev; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done && test -z "$$fail"
tags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
	done
ctags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
	done

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; } \
	       END { for (i in files) print i; }'`; \
	mkid -fID $$unique
tags: TAGS

TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	here=`pwd`; \
	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
	  include_option=--etags-include; \
	  empty_fix=.; \
	else \
	  include_option=--include; \
	  empty_fix=; \
	fi; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test ! -f $$subdir/TAGS || \
	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
	  fi; \
	done; \
	list='$(SOURCES) $(HEADERS) config.h.in $(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; } \
	       END { for (i in files) print i; }'`; \
	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	    $$tags $$unique; \
	fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	here=`pwd`; \
	list='$(SOURCES) $(HEADERS) config.h.in $(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; } \
	       END { for (i in files) print i; }'`; \
	test -z "$(CTAGS_ARGS)$$tags$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$tags $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && cd $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) $$here

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

distdir: $(DISTFILES)
	$(am__remove_distdir)
	mkdir $(distdir)
	$(mkdir_p) $(distdir)/. $(distdir)/familiar $(distdir)/intercept
	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
	list='$(DISTFILES)'; for file in $$list; do \
	  case $$file in \
	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
	  esac; \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
	    dir="/$$dir"; \
	    $(mkdir_p) "$(distdir)$$dir"; \
	  else \
	    dir=''; \
	  fi; \
	  if test -d $$d/$$file; then \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
	    fi; \
	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
	  else \
	    test -f $(distdir)/$$file \
	    || cp -p $$d/$$file $(distdir)/$$file \
	    || exit 1; \
	  fi; \
	done
	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test -d "$(distdir)/$$subdir" \
	    || $(mkdir_p) "$(distdir)/$$subdir" \
	    || exit 1; \
	    distdir=`$(am__cd) $(distdir) && pwd`; \
	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
	    (cd $$subdir && \
	      $(MAKE) $(AM_MAKEFLAGS) \
	        top_distdir="$$top_distdir" \
	        distdir="$$distdir/$$subdir" \
	        distdir) \
	      || exit 1; \
	  fi; \
	done
	-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
	|| chmod -R a+r $(distdir)
dist-gzip: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

dist-bzip2: distdir
	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
	$(am__remove_distdir)

dist-tarZ: distdir
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
	$(am__remove_distdir)

dist-shar: distdir
	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
	$(am__remove_distdir)

dist-zip: distdir
	-rm -f $(distdir).zip
	zip -rq $(distdir).zip $(distdir)
	$(am__remove_distdir)

dist dist-all: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

# This target untars the dist file and tries a VPATH configuration.  Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
	case '$(DIST_ARCHIVES)' in \
	*.tar.gz*) \
	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
	*.tar.bz2*) \
	  bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
	*.tar.Z*) \
	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
	*.shar.gz*) \
	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
	*.zip*) \
	  unzip $(distdir).zip ;;\
	esac
	chmod -R a-w $(distdir); chmod a+w $(distdir)
	mkdir $(distdir)/_build
	mkdir $(distdir)/_inst
	chmod a-w $(distdir)
	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
	  && cd $(distdir)/_build \
	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
	    $(DISTCHECK_CONFIGURE_FLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
	  && $(MAKE) $(AM_MAKEFLAGS) check \
	  && $(MAKE) $(AM_MAKEFLAGS) install \
	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
	        distuninstallcheck \
	  && chmod -R a-w "$$dc_install_base" \
	  && ({ \
	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
	  && rm -rf "$$dc_destdir" \
	  && $(MAKE) $(AM_MAKEFLAGS) dist \
	  && rm -rf $(DIST_ARCHIVES) \
	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
	$(am__remove_distdir)
	@(echo "$(distdir) archives ready for distribution: "; \
	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
	  sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
distuninstallcheck:
	@cd $(distuninstallcheck_dir) \
	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
	   || { echo "ERROR: files left after uninstall:" ; \
	        if test -n "$(DESTDIR)"; then \
	          echo "  (check DESTDIR support)"; \
	        fi ; \
	        $(distuninstallcheck_listfiles) ; \
	        exit 1; } >&2
distcleancheck: distclean
	@if test '$(srcdir)' = . ; then \
	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
	  exit 1 ; \
	fi
	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
	  || { echo "ERROR: files left in build directory after distclean:" ; \
	       $(distcleancheck_listfiles) ; \
	       exit 1; } >&2
check-am: all-am
check: check-recursive
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(DATA) \
		$(HEADERS) config.h
install-binPROGRAMS: install-libLTLIBRARIES

installdirs: installdirs-recursive
installdirs-am:
	for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(interceptdir)" "$(DESTDIR)$(libipkg_includedir)"; do \
	  test -z "$$dir" || $(mkdir_p) "$$dir"; \
	done
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-recursive
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:

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_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 "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-recursive

clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
	clean-libtool clean-noinstPROGRAMS mostlyclean-am

distclean: distclean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-hdr distclean-libtool distclean-tags

dvi: dvi-recursive

dvi-am:

html: html-recursive

info: info-recursive

info-am:

install-data-am: install-interceptDATA install-libipkg_includeHEADERS
	@$(NORMAL_INSTALL)
	$(MAKE) $(AM_MAKEFLAGS) install-data-hook

install-exec-am: install-binPROGRAMS install-binSCRIPTS \
	install-libLTLIBRARIES

install-info: install-info-recursive

install-man:

installcheck-am:

maintainer-clean: maintainer-clean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf $(top_srcdir)/autom4te.cache
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-recursive

mostlyclean-am: mostlyclean-compile mostlyclean-generic \
	mostlyclean-libtool

pdf: pdf-recursive

pdf-am:

ps: ps-recursive

ps-am:

uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
	uninstall-info-am uninstall-interceptDATA \
	uninstall-libLTLIBRARIES uninstall-libipkg_includeHEADERS

uninstall-info: uninstall-info-recursive

.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
	check-am clean clean-binPROGRAMS clean-generic \
	clean-libLTLIBRARIES clean-libtool clean-noinstPROGRAMS \
	clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \
	dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \
	distclean-compile distclean-generic distclean-hdr \
	distclean-libtool distclean-recursive distclean-tags \
	distcleancheck distdir distuninstallcheck dvi dvi-am html \
	html-am info info-am install install-am install-binPROGRAMS \
	install-binSCRIPTS install-data install-data-am \
	install-data-hook install-exec install-exec-am install-info \
	install-info-am install-interceptDATA install-libLTLIBRARIES \
	install-libipkg_includeHEADERS install-man install-strip \
	installcheck installcheck-am installdirs installdirs-am \
	maintainer-clean maintainer-clean-generic \
	maintainer-clean-recursive mostlyclean mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
	pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
	uninstall-binPROGRAMS uninstall-binSCRIPTS uninstall-info-am \
	uninstall-interceptDATA uninstall-libLTLIBRARIES \
	uninstall-libipkg_includeHEADERS


install-data-hook:
	chmod +x $(DESTDIR)$(datadir)/ipkg/intercept/*

package: all-recursive
	STRIPPROG=$(STRIP) familiar/rules INSTALL=$$PWD/install-sh  binary-arch
# 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: