summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/src/Makefile.in
blob: 9e36531e6638210390306998367de4f276c620c4 (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
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2018 Free Software Foundation, Inc.

# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

@SET_MAKE@



VPATH = @srcdir@
am__is_gnu_make = { \
  if test -z '$(MAKELEVEL)'; then \
    false; \
  elif test -n '$(MAKE_HOST)'; then \
    true; \
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    true; \
  else \
    false; \
  fi; \
}
am__make_running_with_option = \
  case $${target_option-} in \
      ?) ;; \
      *) echo "am__make_running_with_option: internal error: invalid" \
              "target option '$${target_option-}' specified" >&2; \
         exit 1;; \
  esac; \
  has_opt=no; \
  sane_makeflags=$$MAKEFLAGS; \
  if $(am__is_gnu_make); then \
    sane_makeflags=$$MFLAGS; \
  else \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        bs=\\; \
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
    esac; \
  fi; \
  skip_next=no; \
  strip_trailopt () \
  { \
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  }; \
  for flg in $$sane_makeflags; do \
    test $$skip_next = yes && { skip_next=no; continue; }; \
    case $$flg in \
      *=*|--*) continue;; \
        -*I) strip_trailopt 'I'; skip_next=yes;; \
      -*I?*) strip_trailopt 'I';; \
        -*O) strip_trailopt 'O'; skip_next=yes;; \
      -*O?*) strip_trailopt 'O';; \
        -*l) strip_trailopt 'l'; skip_next=yes;; \
      -*l?*) strip_trailopt 'l';; \
      -[dEDm]) skip_next=yes;; \
      -[JT]) skip_next=yes;; \
    esac; \
    case $$flg in \
      *$$target_option*) has_opt=yes; break;; \
    esac; \
  done; \
  test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
noinst_PROGRAMS = t/test_array$(EXEEXT) t/test_buffer$(EXEEXT) \
	t/test_burl$(EXEEXT) t/test_base64$(EXEEXT) \
	t/test_configfile$(EXEEXT) t/test_keyvalue$(EXEEXT) \
	t/test_mod_access$(EXEEXT) t/test_mod_evhost$(EXEEXT) \
	t/test_mod_simple_vhost$(EXEEXT) t/test_request$(EXEEXT)
sbin_PROGRAMS = lighttpd$(EXEEXT) lighttpd-angel$(EXEEXT)
@NO_RDYNAMIC_TRUE@am__append_1 = liblightcomp.la
@NO_RDYNAMIC_FALSE@am__append_2 = $(common_src)
@BUILD_WITH_GEOIP_TRUE@am__append_3 = mod_geoip.la
@BUILD_WITH_LUA_TRUE@am__append_4 = mod_magnet.la mod_cml.la
@BUILD_MOD_TRIGGER_B4_DL_TRUE@am__append_5 = mod_trigger_b4_dl.la
@BUILD_WITH_LDAP_TRUE@am__append_6 = mod_vhostdb_ldap.la
@BUILD_WITH_MYSQL_TRUE@am__append_7 = mod_mysql_vhost.la \
@BUILD_WITH_MYSQL_TRUE@	mod_vhostdb_mysql.la
@BUILD_WITH_PGSQL_TRUE@am__append_8 = mod_vhostdb_pgsql.la
@BUILD_WITH_DBI_TRUE@am__append_9 = mod_vhostdb_dbi.la
@BUILD_WITH_KRB5_TRUE@am__append_10 = mod_authn_gssapi.la
@BUILD_WITH_LDAP_TRUE@am__append_11 = mod_authn_ldap.la
@BUILD_WITH_PAM_TRUE@am__append_12 = mod_authn_pam.la
@BUILD_WITH_MYSQL_TRUE@am__append_13 = mod_authn_mysql.la
@BUILD_WITH_SASL_TRUE@am__append_14 = mod_authn_sasl.la
@BUILD_WITH_OPENSSL_TRUE@am__append_15 = mod_openssl.la
@BUILD_WITH_GEOIP_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_16 = mod_geoip.c
@BUILD_WITH_GEOIP_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_17 = $(GEOIP_LIB)
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_18 = mod_cml.c mod_cml_lua.c mod_cml_funcs.c \
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@                    mod_magnet.c mod_magnet_cache.c

@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_19 = $(LUA_CFLAGS)
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_20 = $(LUA_LIBS) -lm
@BUILD_WITH_KRB5_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_21 = mod_authn_gssapi.c
@BUILD_WITH_KRB5_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_22 = $(KRB5_LIB)
@BUILD_WITH_LDAP_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_23 = mod_authn_ldap.c mod_vhostdb_ldap.c
@BUILD_WITH_LDAP_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_24 = $(LDAP_LIB) $(LBER_LIB)
@BUILD_WITH_PAM_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_25 = mod_authn_pam.c
@BUILD_WITH_PAM_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_26 = $(PAM_LIB)
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_27 = mod_authn_mysql.c mod_mysql_vhost.c mod_vhostdb_mysql.c
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_28 = $(MYSQL_CFLAGS)
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_29 = $(MYSQL_LIBS)
@BUILD_WITH_PGSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_30 = mod_vhostdb_pgsql.c
@BUILD_WITH_PGSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_31 = $(PGSQL_INCLUDE)
@BUILD_WITH_PGSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_32 = $(PGSQL_LIBS)
@BUILD_WITH_DBI_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_33 = mod_vhostdb_dbi.c
@BUILD_WITH_DBI_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_34 = $(DBI_CFLAGS)
@BUILD_WITH_DBI_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_35 = $(DBI_LIBS)
@BUILD_WITH_OPENSSL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_36 = mod_openssl.c
@BUILD_WITH_OPENSSL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_37 = $(SSL_LIB)
@BUILD_WITH_MEMCACHED_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_38 = $(MEMCACHED_CFLAGS)
@BUILD_WITH_MEMCACHED_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_39 = $(MEMCACHED_LIB)
@BUILD_WITH_GDBM_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_40 = $(GDBM_LIB)
@BUILD_MOD_TRIGGER_B4_DL_TRUE@@LIGHTTPD_STATIC_TRUE@am__append_41 = mod_trigger_b4_dl.c
subdir = src
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps =  \
	$(top_srcdir)/scripts/m4/ax_prog_cc_for_build.m4 \
	$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
	$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
	$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \
	$(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(libdir)"
PROGRAMS = $(noinst_PROGRAMS) $(sbin_PROGRAMS)
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 = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
  test -z "$$files" \
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
         $(am__cd) "$$dir" && rm -f $$files; }; \
  }
LTLIBRARIES = $(lib_LTLIBRARIES)
am__DEPENDENCIES_1 =
@NO_RDYNAMIC_TRUE@liblightcomp_la_DEPENDENCIES =  \
@NO_RDYNAMIC_TRUE@	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
@NO_RDYNAMIC_TRUE@	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
@NO_RDYNAMIC_TRUE@	$(am__DEPENDENCIES_1)
am__liblightcomp_la_SOURCES_DIST = base64.c buffer.c burl.c log.c \
	http_header.c http_kv.c keyvalue.c chunk.c http_chunk.c \
	stream.c fdevent.c gw_backend.c stat_cache.c plugin.c \
	joblist.c etag.c array.c data_string.c data_array.c \
	data_integer.c algo_sha1.c md5.c vector.c fdevent_select.c \
	fdevent_libev.c fdevent_poll.c fdevent_linux_sysepoll.c \
	fdevent_solaris_devpoll.c fdevent_solaris_port.c \
	fdevent_freebsd_kqueue.c data_config.c crc32.c \
	connections-glue.c configfile-glue.c http-header-glue.c \
	http_auth.c http_vhostdb.c rand.c request.c sock_addr.c \
	splaytree.c safe_memclear.c
am__objects_1 = liblightcomp_la-base64.lo liblightcomp_la-buffer.lo \
	liblightcomp_la-burl.lo liblightcomp_la-log.lo \
	liblightcomp_la-http_header.lo liblightcomp_la-http_kv.lo \
	liblightcomp_la-keyvalue.lo liblightcomp_la-chunk.lo \
	liblightcomp_la-http_chunk.lo liblightcomp_la-stream.lo \
	liblightcomp_la-fdevent.lo liblightcomp_la-gw_backend.lo \
	liblightcomp_la-stat_cache.lo liblightcomp_la-plugin.lo \
	liblightcomp_la-joblist.lo liblightcomp_la-etag.lo \
	liblightcomp_la-array.lo liblightcomp_la-data_string.lo \
	liblightcomp_la-data_array.lo liblightcomp_la-data_integer.lo \
	liblightcomp_la-algo_sha1.lo liblightcomp_la-md5.lo \
	liblightcomp_la-vector.lo liblightcomp_la-fdevent_select.lo \
	liblightcomp_la-fdevent_libev.lo \
	liblightcomp_la-fdevent_poll.lo \
	liblightcomp_la-fdevent_linux_sysepoll.lo \
	liblightcomp_la-fdevent_solaris_devpoll.lo \
	liblightcomp_la-fdevent_solaris_port.lo \
	liblightcomp_la-fdevent_freebsd_kqueue.lo \
	liblightcomp_la-data_config.lo liblightcomp_la-crc32.lo \
	liblightcomp_la-connections-glue.lo \
	liblightcomp_la-configfile-glue.lo \
	liblightcomp_la-http-header-glue.lo \
	liblightcomp_la-http_auth.lo liblightcomp_la-http_vhostdb.lo \
	liblightcomp_la-rand.lo liblightcomp_la-request.lo \
	liblightcomp_la-sock_addr.lo liblightcomp_la-splaytree.lo \
	liblightcomp_la-safe_memclear.lo
@NO_RDYNAMIC_TRUE@am_liblightcomp_la_OBJECTS = $(am__objects_1)
liblightcomp_la_OBJECTS = $(am_liblightcomp_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 = 
liblightcomp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(liblightcomp_la_CFLAGS) $(CFLAGS) $(liblightcomp_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@NO_RDYNAMIC_TRUE@am_liblightcomp_la_rpath = -rpath $(libdir)
@NO_RDYNAMIC_TRUE@am__DEPENDENCIES_2 = liblightcomp.la
mod_access_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_access_la_OBJECTS = mod_access.lo
mod_access_la_OBJECTS = $(am_mod_access_la_OBJECTS)
mod_access_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_access_la_LDFLAGS) $(LDFLAGS) -o $@
mod_accesslog_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_accesslog_la_OBJECTS = mod_accesslog.lo
mod_accesslog_la_OBJECTS = $(am_mod_accesslog_la_OBJECTS)
mod_accesslog_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_accesslog_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_alias_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_alias_la_OBJECTS = mod_alias.lo
mod_alias_la_OBJECTS = $(am_mod_alias_la_OBJECTS)
mod_alias_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_alias_la_LDFLAGS) $(LDFLAGS) -o $@
mod_auth_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_auth_la_OBJECTS = mod_auth.lo
mod_auth_la_OBJECTS = $(am_mod_auth_la_OBJECTS)
mod_auth_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_auth_la_LDFLAGS) $(LDFLAGS) -o $@
mod_authn_file_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
am_mod_authn_file_la_OBJECTS = mod_authn_file.lo
mod_authn_file_la_OBJECTS = $(am_mod_authn_file_la_OBJECTS)
mod_authn_file_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_authn_file_la_LDFLAGS) $(LDFLAGS) \
	-o $@
@BUILD_WITH_KRB5_TRUE@mod_authn_gssapi_la_DEPENDENCIES =  \
@BUILD_WITH_KRB5_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_KRB5_TRUE@	$(am__DEPENDENCIES_2)
am__mod_authn_gssapi_la_SOURCES_DIST = mod_authn_gssapi.c
@BUILD_WITH_KRB5_TRUE@am_mod_authn_gssapi_la_OBJECTS =  \
@BUILD_WITH_KRB5_TRUE@	mod_authn_gssapi.lo
mod_authn_gssapi_la_OBJECTS = $(am_mod_authn_gssapi_la_OBJECTS)
mod_authn_gssapi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_authn_gssapi_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_KRB5_TRUE@am_mod_authn_gssapi_la_rpath = -rpath $(libdir)
@BUILD_WITH_LDAP_TRUE@mod_authn_ldap_la_DEPENDENCIES =  \
@BUILD_WITH_LDAP_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_LDAP_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_LDAP_TRUE@	$(am__DEPENDENCIES_2)
am__mod_authn_ldap_la_SOURCES_DIST = mod_authn_ldap.c
@BUILD_WITH_LDAP_TRUE@am_mod_authn_ldap_la_OBJECTS =  \
@BUILD_WITH_LDAP_TRUE@	mod_authn_ldap.lo
mod_authn_ldap_la_OBJECTS = $(am_mod_authn_ldap_la_OBJECTS)
mod_authn_ldap_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_authn_ldap_la_LDFLAGS) $(LDFLAGS) \
	-o $@
@BUILD_WITH_LDAP_TRUE@am_mod_authn_ldap_la_rpath = -rpath $(libdir)
@BUILD_WITH_MYSQL_TRUE@mod_authn_mysql_la_DEPENDENCIES =  \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_authn_mysql_la_SOURCES_DIST = mod_authn_mysql.c
@BUILD_WITH_MYSQL_TRUE@am_mod_authn_mysql_la_OBJECTS =  \
@BUILD_WITH_MYSQL_TRUE@	mod_authn_mysql_la-mod_authn_mysql.lo
mod_authn_mysql_la_OBJECTS = $(am_mod_authn_mysql_la_OBJECTS)
mod_authn_mysql_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_authn_mysql_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_MYSQL_TRUE@am_mod_authn_mysql_la_rpath = -rpath $(libdir)
@BUILD_WITH_PAM_TRUE@mod_authn_pam_la_DEPENDENCIES =  \
@BUILD_WITH_PAM_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_PAM_TRUE@	$(am__DEPENDENCIES_2)
am__mod_authn_pam_la_SOURCES_DIST = mod_authn_pam.c
@BUILD_WITH_PAM_TRUE@am_mod_authn_pam_la_OBJECTS = mod_authn_pam.lo
mod_authn_pam_la_OBJECTS = $(am_mod_authn_pam_la_OBJECTS)
mod_authn_pam_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_authn_pam_la_LDFLAGS) $(LDFLAGS) \
	-o $@
@BUILD_WITH_PAM_TRUE@am_mod_authn_pam_la_rpath = -rpath $(libdir)
@BUILD_WITH_SASL_TRUE@mod_authn_sasl_la_DEPENDENCIES =  \
@BUILD_WITH_SASL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_SASL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_authn_sasl_la_SOURCES_DIST = mod_authn_sasl.c
@BUILD_WITH_SASL_TRUE@am_mod_authn_sasl_la_OBJECTS =  \
@BUILD_WITH_SASL_TRUE@	mod_authn_sasl_la-mod_authn_sasl.lo
mod_authn_sasl_la_OBJECTS = $(am_mod_authn_sasl_la_OBJECTS)
mod_authn_sasl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_authn_sasl_la_LDFLAGS) $(LDFLAGS) \
	-o $@
@BUILD_WITH_SASL_TRUE@am_mod_authn_sasl_la_rpath = -rpath $(libdir)
mod_cgi_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_cgi_la_OBJECTS = mod_cgi.lo
mod_cgi_la_OBJECTS = $(am_mod_cgi_la_OBJECTS)
mod_cgi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_cgi_la_LDFLAGS) $(LDFLAGS) -o $@
@BUILD_WITH_LUA_TRUE@mod_cml_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
@BUILD_WITH_LUA_TRUE@	$(am__DEPENDENCIES_2) \
@BUILD_WITH_LUA_TRUE@	$(am__DEPENDENCIES_1)
am__mod_cml_la_SOURCES_DIST = mod_cml.c mod_cml_lua.c mod_cml_funcs.c
@BUILD_WITH_LUA_TRUE@am_mod_cml_la_OBJECTS = mod_cml_la-mod_cml.lo \
@BUILD_WITH_LUA_TRUE@	mod_cml_la-mod_cml_lua.lo \
@BUILD_WITH_LUA_TRUE@	mod_cml_la-mod_cml_funcs.lo
mod_cml_la_OBJECTS = $(am_mod_cml_la_OBJECTS)
mod_cml_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(mod_cml_la_CFLAGS) \
	$(CFLAGS) $(mod_cml_la_LDFLAGS) $(LDFLAGS) -o $@
@BUILD_WITH_LUA_TRUE@am_mod_cml_la_rpath = -rpath $(libdir)
mod_compress_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
am_mod_compress_la_OBJECTS = mod_compress.lo
mod_compress_la_OBJECTS = $(am_mod_compress_la_OBJECTS)
mod_compress_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_compress_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_deflate_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
am_mod_deflate_la_OBJECTS = mod_deflate.lo
mod_deflate_la_OBJECTS = $(am_mod_deflate_la_OBJECTS)
mod_deflate_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_deflate_la_LDFLAGS) $(LDFLAGS) -o \
	$@
mod_dirlisting_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
	$(am__DEPENDENCIES_1)
am_mod_dirlisting_la_OBJECTS = mod_dirlisting.lo
mod_dirlisting_la_OBJECTS = $(am_mod_dirlisting_la_OBJECTS)
mod_dirlisting_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_dirlisting_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_evasive_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_evasive_la_OBJECTS = mod_evasive.lo
mod_evasive_la_OBJECTS = $(am_mod_evasive_la_OBJECTS)
mod_evasive_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_evasive_la_LDFLAGS) $(LDFLAGS) -o \
	$@
mod_evhost_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_evhost_la_OBJECTS = mod_evhost.lo
mod_evhost_la_OBJECTS = $(am_mod_evhost_la_OBJECTS)
mod_evhost_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_evhost_la_LDFLAGS) $(LDFLAGS) -o $@
mod_expire_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_expire_la_OBJECTS = mod_expire.lo
mod_expire_la_OBJECTS = $(am_mod_expire_la_OBJECTS)
mod_expire_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_expire_la_LDFLAGS) $(LDFLAGS) -o $@
mod_extforward_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_extforward_la_OBJECTS = mod_extforward.lo
mod_extforward_la_OBJECTS = $(am_mod_extforward_la_OBJECTS)
mod_extforward_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_extforward_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_fastcgi_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_fastcgi_la_OBJECTS = mod_fastcgi.lo
mod_fastcgi_la_OBJECTS = $(am_mod_fastcgi_la_OBJECTS)
mod_fastcgi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_fastcgi_la_LDFLAGS) $(LDFLAGS) -o \
	$@
mod_flv_streaming_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_flv_streaming_la_OBJECTS = mod_flv_streaming.lo
mod_flv_streaming_la_OBJECTS = $(am_mod_flv_streaming_la_OBJECTS)
mod_flv_streaming_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_flv_streaming_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_GEOIP_TRUE@mod_geoip_la_DEPENDENCIES =  \
@BUILD_WITH_GEOIP_TRUE@	$(am__DEPENDENCIES_2) \
@BUILD_WITH_GEOIP_TRUE@	$(am__DEPENDENCIES_1)
am__mod_geoip_la_SOURCES_DIST = mod_geoip.c
@BUILD_WITH_GEOIP_TRUE@am_mod_geoip_la_OBJECTS = mod_geoip.lo
mod_geoip_la_OBJECTS = $(am_mod_geoip_la_OBJECTS)
mod_geoip_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_geoip_la_LDFLAGS) $(LDFLAGS) -o $@
@BUILD_WITH_GEOIP_TRUE@am_mod_geoip_la_rpath = -rpath $(libdir)
mod_indexfile_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_indexfile_la_OBJECTS = mod_indexfile.lo
mod_indexfile_la_OBJECTS = $(am_mod_indexfile_la_OBJECTS)
mod_indexfile_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_indexfile_la_LDFLAGS) $(LDFLAGS) \
	-o $@
@BUILD_WITH_LUA_TRUE@mod_magnet_la_DEPENDENCIES =  \
@BUILD_WITH_LUA_TRUE@	$(am__DEPENDENCIES_2) \
@BUILD_WITH_LUA_TRUE@	$(am__DEPENDENCIES_1)
am__mod_magnet_la_SOURCES_DIST = mod_magnet.c mod_magnet_cache.c
@BUILD_WITH_LUA_TRUE@am_mod_magnet_la_OBJECTS =  \
@BUILD_WITH_LUA_TRUE@	mod_magnet_la-mod_magnet.lo \
@BUILD_WITH_LUA_TRUE@	mod_magnet_la-mod_magnet_cache.lo
mod_magnet_la_OBJECTS = $(am_mod_magnet_la_OBJECTS)
mod_magnet_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(mod_magnet_la_CFLAGS) \
	$(CFLAGS) $(mod_magnet_la_LDFLAGS) $(LDFLAGS) -o $@
@BUILD_WITH_LUA_TRUE@am_mod_magnet_la_rpath = -rpath $(libdir)
@BUILD_WITH_MYSQL_TRUE@mod_mysql_vhost_la_DEPENDENCIES =  \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_mysql_vhost_la_SOURCES_DIST = mod_mysql_vhost.c
@BUILD_WITH_MYSQL_TRUE@am_mod_mysql_vhost_la_OBJECTS =  \
@BUILD_WITH_MYSQL_TRUE@	mod_mysql_vhost_la-mod_mysql_vhost.lo
mod_mysql_vhost_la_OBJECTS = $(am_mod_mysql_vhost_la_OBJECTS)
mod_mysql_vhost_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_mysql_vhost_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_MYSQL_TRUE@am_mod_mysql_vhost_la_rpath = -rpath $(libdir)
@BUILD_WITH_OPENSSL_TRUE@mod_openssl_la_DEPENDENCIES =  \
@BUILD_WITH_OPENSSL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_OPENSSL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_openssl_la_SOURCES_DIST = mod_openssl.c
@BUILD_WITH_OPENSSL_TRUE@am_mod_openssl_la_OBJECTS = mod_openssl.lo
mod_openssl_la_OBJECTS = $(am_mod_openssl_la_OBJECTS)
mod_openssl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_openssl_la_LDFLAGS) $(LDFLAGS) -o \
	$@
@BUILD_WITH_OPENSSL_TRUE@am_mod_openssl_la_rpath = -rpath $(libdir)
mod_proxy_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_proxy_la_OBJECTS = mod_proxy.lo
mod_proxy_la_OBJECTS = $(am_mod_proxy_la_OBJECTS)
mod_proxy_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_proxy_la_LDFLAGS) $(LDFLAGS) -o $@
mod_redirect_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_2)
am_mod_redirect_la_OBJECTS = mod_redirect.lo
mod_redirect_la_OBJECTS = $(am_mod_redirect_la_OBJECTS)
mod_redirect_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_redirect_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_rewrite_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_2)
am_mod_rewrite_la_OBJECTS = mod_rewrite.lo
mod_rewrite_la_OBJECTS = $(am_mod_rewrite_la_OBJECTS)
mod_rewrite_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_rewrite_la_LDFLAGS) $(LDFLAGS) -o \
	$@
mod_rrdtool_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_rrdtool_la_OBJECTS = mod_rrdtool.lo
mod_rrdtool_la_OBJECTS = $(am_mod_rrdtool_la_OBJECTS)
mod_rrdtool_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_rrdtool_la_LDFLAGS) $(LDFLAGS) -o \
	$@
mod_scgi_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_scgi_la_OBJECTS = mod_scgi.lo
mod_scgi_la_OBJECTS = $(am_mod_scgi_la_OBJECTS)
mod_scgi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_scgi_la_LDFLAGS) $(LDFLAGS) -o $@
mod_secdownload_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
	$(am__DEPENDENCIES_1)
am_mod_secdownload_la_OBJECTS = mod_secdownload.lo
mod_secdownload_la_OBJECTS = $(am_mod_secdownload_la_OBJECTS)
mod_secdownload_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_secdownload_la_LDFLAGS) \
	$(LDFLAGS) -o $@
mod_setenv_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_setenv_la_OBJECTS = mod_setenv.lo
mod_setenv_la_OBJECTS = $(am_mod_setenv_la_OBJECTS)
mod_setenv_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_setenv_la_LDFLAGS) $(LDFLAGS) -o $@
mod_simple_vhost_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_simple_vhost_la_OBJECTS = mod_simple_vhost.lo
mod_simple_vhost_la_OBJECTS = $(am_mod_simple_vhost_la_OBJECTS)
mod_simple_vhost_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_simple_vhost_la_LDFLAGS) \
	$(LDFLAGS) -o $@
mod_sockproxy_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_sockproxy_la_OBJECTS = mod_sockproxy.lo
mod_sockproxy_la_OBJECTS = $(am_mod_sockproxy_la_OBJECTS)
mod_sockproxy_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_sockproxy_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_ssi_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_ssi_la_OBJECTS = mod_ssi_exprparser.lo mod_ssi_expr.lo \
	mod_ssi.lo
mod_ssi_la_OBJECTS = $(am_mod_ssi_la_OBJECTS)
mod_ssi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_ssi_la_LDFLAGS) $(LDFLAGS) -o $@
mod_staticfile_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_staticfile_la_OBJECTS = mod_staticfile.lo
mod_staticfile_la_OBJECTS = $(am_mod_staticfile_la_OBJECTS)
mod_staticfile_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_staticfile_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_status_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_status_la_OBJECTS = mod_status.lo
mod_status_la_OBJECTS = $(am_mod_status_la_OBJECTS)
mod_status_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(mod_status_la_LDFLAGS) $(LDFLAGS) -o $@
@BUILD_MOD_TRIGGER_B4_DL_TRUE@mod_trigger_b4_dl_la_DEPENDENCIES =  \
@BUILD_MOD_TRIGGER_B4_DL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_MOD_TRIGGER_B4_DL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_MOD_TRIGGER_B4_DL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_MOD_TRIGGER_B4_DL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_trigger_b4_dl_la_SOURCES_DIST = mod_trigger_b4_dl.c
@BUILD_MOD_TRIGGER_B4_DL_TRUE@am_mod_trigger_b4_dl_la_OBJECTS =  \
@BUILD_MOD_TRIGGER_B4_DL_TRUE@	mod_trigger_b4_dl.lo
mod_trigger_b4_dl_la_OBJECTS = $(am_mod_trigger_b4_dl_la_OBJECTS)
mod_trigger_b4_dl_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_trigger_b4_dl_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_MOD_TRIGGER_B4_DL_TRUE@am_mod_trigger_b4_dl_la_rpath = -rpath \
@BUILD_MOD_TRIGGER_B4_DL_TRUE@	$(libdir)
mod_uploadprogress_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_uploadprogress_la_OBJECTS = mod_uploadprogress.lo
mod_uploadprogress_la_OBJECTS = $(am_mod_uploadprogress_la_OBJECTS)
mod_uploadprogress_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_uploadprogress_la_LDFLAGS) \
	$(LDFLAGS) -o $@
mod_userdir_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_userdir_la_OBJECTS = mod_userdir.lo
mod_userdir_la_OBJECTS = $(am_mod_userdir_la_OBJECTS)
mod_userdir_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_userdir_la_LDFLAGS) $(LDFLAGS) -o \
	$@
mod_usertrack_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_usertrack_la_OBJECTS = mod_usertrack.lo
mod_usertrack_la_OBJECTS = $(am_mod_usertrack_la_OBJECTS)
mod_usertrack_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_usertrack_la_LDFLAGS) $(LDFLAGS) \
	-o $@
mod_vhostdb_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_mod_vhostdb_la_OBJECTS = mod_vhostdb.lo
mod_vhostdb_la_OBJECTS = $(am_mod_vhostdb_la_OBJECTS)
mod_vhostdb_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_vhostdb_la_LDFLAGS) $(LDFLAGS) -o \
	$@
@BUILD_WITH_DBI_TRUE@mod_vhostdb_dbi_la_DEPENDENCIES =  \
@BUILD_WITH_DBI_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_DBI_TRUE@	$(am__DEPENDENCIES_2)
am__mod_vhostdb_dbi_la_SOURCES_DIST = mod_vhostdb_dbi.c
@BUILD_WITH_DBI_TRUE@am_mod_vhostdb_dbi_la_OBJECTS =  \
@BUILD_WITH_DBI_TRUE@	mod_vhostdb_dbi_la-mod_vhostdb_dbi.lo
mod_vhostdb_dbi_la_OBJECTS = $(am_mod_vhostdb_dbi_la_OBJECTS)
mod_vhostdb_dbi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_vhostdb_dbi_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_DBI_TRUE@am_mod_vhostdb_dbi_la_rpath = -rpath $(libdir)
@BUILD_WITH_LDAP_TRUE@mod_vhostdb_ldap_la_DEPENDENCIES =  \
@BUILD_WITH_LDAP_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_LDAP_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_LDAP_TRUE@	$(am__DEPENDENCIES_2)
am__mod_vhostdb_ldap_la_SOURCES_DIST = mod_vhostdb_ldap.c
@BUILD_WITH_LDAP_TRUE@am_mod_vhostdb_ldap_la_OBJECTS =  \
@BUILD_WITH_LDAP_TRUE@	mod_vhostdb_ldap.lo
mod_vhostdb_ldap_la_OBJECTS = $(am_mod_vhostdb_ldap_la_OBJECTS)
mod_vhostdb_ldap_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_vhostdb_ldap_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_LDAP_TRUE@am_mod_vhostdb_ldap_la_rpath = -rpath $(libdir)
@BUILD_WITH_MYSQL_TRUE@mod_vhostdb_mysql_la_DEPENDENCIES =  \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_MYSQL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_vhostdb_mysql_la_SOURCES_DIST = mod_vhostdb_mysql.c
@BUILD_WITH_MYSQL_TRUE@am_mod_vhostdb_mysql_la_OBJECTS = mod_vhostdb_mysql_la-mod_vhostdb_mysql.lo
mod_vhostdb_mysql_la_OBJECTS = $(am_mod_vhostdb_mysql_la_OBJECTS)
mod_vhostdb_mysql_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_vhostdb_mysql_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_MYSQL_TRUE@am_mod_vhostdb_mysql_la_rpath = -rpath \
@BUILD_WITH_MYSQL_TRUE@	$(libdir)
@BUILD_WITH_PGSQL_TRUE@mod_vhostdb_pgsql_la_DEPENDENCIES =  \
@BUILD_WITH_PGSQL_TRUE@	$(am__DEPENDENCIES_1) \
@BUILD_WITH_PGSQL_TRUE@	$(am__DEPENDENCIES_2)
am__mod_vhostdb_pgsql_la_SOURCES_DIST = mod_vhostdb_pgsql.c
@BUILD_WITH_PGSQL_TRUE@am_mod_vhostdb_pgsql_la_OBJECTS = mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.lo
mod_vhostdb_pgsql_la_OBJECTS = $(am_mod_vhostdb_pgsql_la_OBJECTS)
mod_vhostdb_pgsql_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_vhostdb_pgsql_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@BUILD_WITH_PGSQL_TRUE@am_mod_vhostdb_pgsql_la_rpath = -rpath \
@BUILD_WITH_PGSQL_TRUE@	$(libdir)
mod_webdav_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am_mod_webdav_la_OBJECTS = mod_webdav_la-mod_webdav.lo
mod_webdav_la_OBJECTS = $(am_mod_webdav_la_OBJECTS)
mod_webdav_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(mod_webdav_la_CFLAGS) \
	$(CFLAGS) $(mod_webdav_la_LDFLAGS) $(LDFLAGS) -o $@
mod_wstunnel_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
	$(am__DEPENDENCIES_1)
am_mod_wstunnel_la_OBJECTS = mod_wstunnel.lo
mod_wstunnel_la_OBJECTS = $(am_mod_wstunnel_la_OBJECTS)
mod_wstunnel_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(mod_wstunnel_la_LDFLAGS) $(LDFLAGS) \
	-o $@
am__lighttpd_SOURCES_DIST = server.c response.c connections.c \
	inet_ntop_cache.c network.c network_write.c configfile.c \
	configparser.c base64.c buffer.c burl.c log.c http_header.c \
	http_kv.c keyvalue.c chunk.c http_chunk.c stream.c fdevent.c \
	gw_backend.c stat_cache.c plugin.c joblist.c etag.c array.c \
	data_string.c data_array.c data_integer.c algo_sha1.c md5.c \
	vector.c fdevent_select.c fdevent_libev.c fdevent_poll.c \
	fdevent_linux_sysepoll.c fdevent_solaris_devpoll.c \
	fdevent_solaris_port.c fdevent_freebsd_kqueue.c data_config.c \
	crc32.c connections-glue.c configfile-glue.c \
	http-header-glue.c http_auth.c http_vhostdb.c rand.c request.c \
	sock_addr.c splaytree.c safe_memclear.c mod_access.c \
	mod_accesslog.c mod_alias.c mod_auth.c mod_authn_file.c \
	mod_cgi.c mod_compress.c mod_deflate.c mod_dirlisting.c \
	mod_evasive.c mod_expire.c mod_extforward.c mod_fastcgi.c \
	mod_flv_streaming.c mod_indexfile.c mod_proxy.c mod_redirect.c \
	mod_rewrite.c mod_rrdtool.c mod_scgi.c mod_secdownload.c \
	mod_setenv.c mod_simple_vhost.c mod_ssi_exprparser.c \
	mod_ssi_expr.c mod_ssi.c mod_staticfile.c mod_status.c \
	mod_uploadprogress.c mod_userdir.c mod_usertrack.c \
	mod_vhostdb.c mod_webdav.c mod_geoip.c mod_cml.c mod_cml_lua.c \
	mod_cml_funcs.c mod_magnet.c mod_magnet_cache.c \
	mod_authn_gssapi.c mod_authn_ldap.c mod_vhostdb_ldap.c \
	mod_authn_pam.c mod_authn_mysql.c mod_mysql_vhost.c \
	mod_vhostdb_mysql.c mod_vhostdb_pgsql.c mod_vhostdb_dbi.c \
	mod_openssl.c mod_trigger_b4_dl.c
am__objects_2 = lighttpd-base64.$(OBJEXT) lighttpd-buffer.$(OBJEXT) \
	lighttpd-burl.$(OBJEXT) lighttpd-log.$(OBJEXT) \
	lighttpd-http_header.$(OBJEXT) lighttpd-http_kv.$(OBJEXT) \
	lighttpd-keyvalue.$(OBJEXT) lighttpd-chunk.$(OBJEXT) \
	lighttpd-http_chunk.$(OBJEXT) lighttpd-stream.$(OBJEXT) \
	lighttpd-fdevent.$(OBJEXT) lighttpd-gw_backend.$(OBJEXT) \
	lighttpd-stat_cache.$(OBJEXT) lighttpd-plugin.$(OBJEXT) \
	lighttpd-joblist.$(OBJEXT) lighttpd-etag.$(OBJEXT) \
	lighttpd-array.$(OBJEXT) lighttpd-data_string.$(OBJEXT) \
	lighttpd-data_array.$(OBJEXT) lighttpd-data_integer.$(OBJEXT) \
	lighttpd-algo_sha1.$(OBJEXT) lighttpd-md5.$(OBJEXT) \
	lighttpd-vector.$(OBJEXT) lighttpd-fdevent_select.$(OBJEXT) \
	lighttpd-fdevent_libev.$(OBJEXT) \
	lighttpd-fdevent_poll.$(OBJEXT) \
	lighttpd-fdevent_linux_sysepoll.$(OBJEXT) \
	lighttpd-fdevent_solaris_devpoll.$(OBJEXT) \
	lighttpd-fdevent_solaris_port.$(OBJEXT) \
	lighttpd-fdevent_freebsd_kqueue.$(OBJEXT) \
	lighttpd-data_config.$(OBJEXT) lighttpd-crc32.$(OBJEXT) \
	lighttpd-connections-glue.$(OBJEXT) \
	lighttpd-configfile-glue.$(OBJEXT) \
	lighttpd-http-header-glue.$(OBJEXT) \
	lighttpd-http_auth.$(OBJEXT) lighttpd-http_vhostdb.$(OBJEXT) \
	lighttpd-rand.$(OBJEXT) lighttpd-request.$(OBJEXT) \
	lighttpd-sock_addr.$(OBJEXT) lighttpd-splaytree.$(OBJEXT) \
	lighttpd-safe_memclear.$(OBJEXT)
@NO_RDYNAMIC_FALSE@am__objects_3 = $(am__objects_2)
am__objects_4 = lighttpd-server.$(OBJEXT) lighttpd-response.$(OBJEXT) \
	lighttpd-connections.$(OBJEXT) \
	lighttpd-inet_ntop_cache.$(OBJEXT) lighttpd-network.$(OBJEXT) \
	lighttpd-network_write.$(OBJEXT) lighttpd-configfile.$(OBJEXT) \
	lighttpd-configparser.$(OBJEXT) $(am__objects_3)
@BUILD_WITH_GEOIP_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_5 = lighttpd-mod_geoip.$(OBJEXT)
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_6 = lighttpd-mod_cml.$(OBJEXT) \
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_cml_lua.$(OBJEXT) \
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_cml_funcs.$(OBJEXT) \
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_magnet.$(OBJEXT) \
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_magnet_cache.$(OBJEXT)
@BUILD_WITH_KRB5_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_7 = lighttpd-mod_authn_gssapi.$(OBJEXT)
@BUILD_WITH_LDAP_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_8 = lighttpd-mod_authn_ldap.$(OBJEXT) \
@BUILD_WITH_LDAP_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_vhostdb_ldap.$(OBJEXT)
@BUILD_WITH_PAM_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_9 = lighttpd-mod_authn_pam.$(OBJEXT)
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_10 = lighttpd-mod_authn_mysql.$(OBJEXT) \
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_mysql_vhost.$(OBJEXT) \
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_vhostdb_mysql.$(OBJEXT)
@BUILD_WITH_PGSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_11 = lighttpd-mod_vhostdb_pgsql.$(OBJEXT)
@BUILD_WITH_DBI_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_12 = lighttpd-mod_vhostdb_dbi.$(OBJEXT)
@BUILD_WITH_OPENSSL_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_13 = lighttpd-mod_openssl.$(OBJEXT)
@BUILD_MOD_TRIGGER_B4_DL_TRUE@@LIGHTTPD_STATIC_TRUE@am__objects_14 = lighttpd-mod_trigger_b4_dl.$(OBJEXT)
@LIGHTTPD_STATIC_FALSE@am_lighttpd_OBJECTS = $(am__objects_4)
@LIGHTTPD_STATIC_TRUE@am_lighttpd_OBJECTS = $(am__objects_4) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_access.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_accesslog.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_alias.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_auth.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_authn_file.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_cgi.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_compress.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_deflate.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_dirlisting.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_evasive.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_expire.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_extforward.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_fastcgi.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_flv_streaming.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_indexfile.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_proxy.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_redirect.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_rewrite.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_rrdtool.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_scgi.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_secdownload.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_setenv.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_simple_vhost.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_ssi_exprparser.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_ssi_expr.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_ssi.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_staticfile.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_status.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_uploadprogress.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_userdir.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_usertrack.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_vhostdb.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	lighttpd-mod_webdav.$(OBJEXT) \
@LIGHTTPD_STATIC_TRUE@	$(am__objects_5) $(am__objects_6) \
@LIGHTTPD_STATIC_TRUE@	$(am__objects_7) $(am__objects_8) \
@LIGHTTPD_STATIC_TRUE@	$(am__objects_9) $(am__objects_10) \
@LIGHTTPD_STATIC_TRUE@	$(am__objects_11) $(am__objects_12) \
@LIGHTTPD_STATIC_TRUE@	$(am__objects_13) $(am__objects_14)
lighttpd_OBJECTS = $(am_lighttpd_OBJECTS)
@BUILD_WITH_GEOIP_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_3 = $(am__DEPENDENCIES_1)
@BUILD_WITH_LUA_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_4 = $(am__DEPENDENCIES_1)
@BUILD_WITH_KRB5_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_5 = $(am__DEPENDENCIES_1)
@BUILD_WITH_LDAP_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_6 = $(am__DEPENDENCIES_1) \
@BUILD_WITH_LDAP_TRUE@@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1)
@BUILD_WITH_PAM_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_7 = $(am__DEPENDENCIES_1)
@BUILD_WITH_MYSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_8 = $(am__DEPENDENCIES_1)
@BUILD_WITH_PGSQL_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_9 = $(am__DEPENDENCIES_1)
@BUILD_WITH_DBI_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_10 = $(am__DEPENDENCIES_1)
@BUILD_WITH_OPENSSL_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_11 = $(am__DEPENDENCIES_1)
@BUILD_WITH_MEMCACHED_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_12 = $(am__DEPENDENCIES_1)
@BUILD_WITH_GDBM_TRUE@@LIGHTTPD_STATIC_TRUE@am__DEPENDENCIES_13 = $(am__DEPENDENCIES_1)
@LIGHTTPD_STATIC_FALSE@lighttpd_DEPENDENCIES = $(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_2) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_FALSE@	$(am__DEPENDENCIES_1)
@LIGHTTPD_STATIC_TRUE@lighttpd_DEPENDENCIES = $(am__DEPENDENCIES_2) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_1) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_3) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_4) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_5) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_6) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_7) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_8) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_9) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_10) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_11) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_12) \
@LIGHTTPD_STATIC_TRUE@	$(am__DEPENDENCIES_13)
lighttpd_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(lighttpd_LDFLAGS) $(LDFLAGS) -o $@
am_lighttpd_angel_OBJECTS = lighttpd-angel.$(OBJEXT)
lighttpd_angel_OBJECTS = $(am_lighttpd_angel_OBJECTS)
lighttpd_angel_LDADD = $(LDADD)
am__dirstamp = $(am__leading_dot)dirstamp
am_t_test_array_OBJECTS = t/test_array.$(OBJEXT) array.$(OBJEXT) \
	data_array.$(OBJEXT) data_integer.$(OBJEXT) \
	data_string.$(OBJEXT) buffer.$(OBJEXT)
t_test_array_OBJECTS = $(am_t_test_array_OBJECTS)
t_test_array_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_t_test_base64_OBJECTS = t/test_base64.$(OBJEXT) base64.$(OBJEXT) \
	buffer.$(OBJEXT)
t_test_base64_OBJECTS = $(am_t_test_base64_OBJECTS)
t_test_base64_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_t_test_buffer_OBJECTS = t/test_buffer.$(OBJEXT) buffer.$(OBJEXT)
t_test_buffer_OBJECTS = $(am_t_test_buffer_OBJECTS)
t_test_buffer_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_t_test_burl_OBJECTS = t/test_burl.$(OBJEXT) burl.$(OBJEXT) \
	buffer.$(OBJEXT) base64.$(OBJEXT)
t_test_burl_OBJECTS = $(am_t_test_burl_OBJECTS)
t_test_burl_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_t_test_configfile_OBJECTS = t/test_configfile.$(OBJEXT) \
	buffer.$(OBJEXT) array.$(OBJEXT) data_config.$(OBJEXT) \
	data_integer.$(OBJEXT) data_string.$(OBJEXT) \
	http_header.$(OBJEXT) http_kv.$(OBJEXT) vector.$(OBJEXT) \
	log.$(OBJEXT) sock_addr.$(OBJEXT)
t_test_configfile_OBJECTS = $(am_t_test_configfile_OBJECTS)
t_test_configfile_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am_t_test_keyvalue_OBJECTS = t/test_keyvalue.$(OBJEXT) burl.$(OBJEXT) \
	buffer.$(OBJEXT) base64.$(OBJEXT) array.$(OBJEXT) \
	data_integer.$(OBJEXT) data_string.$(OBJEXT) log.$(OBJEXT)
t_test_keyvalue_OBJECTS = $(am_t_test_keyvalue_OBJECTS)
t_test_keyvalue_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am_t_test_mod_access_OBJECTS = t/test_mod_access.$(OBJEXT) \
	configfile-glue.$(OBJEXT) buffer.$(OBJEXT) array.$(OBJEXT) \
	data_config.$(OBJEXT) data_integer.$(OBJEXT) \
	data_string.$(OBJEXT) http_header.$(OBJEXT) http_kv.$(OBJEXT) \
	vector.$(OBJEXT) log.$(OBJEXT) sock_addr.$(OBJEXT)
t_test_mod_access_OBJECTS = $(am_t_test_mod_access_OBJECTS)
t_test_mod_access_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am_t_test_mod_evhost_OBJECTS = t/test_mod_evhost.$(OBJEXT) \
	configfile-glue.$(OBJEXT) buffer.$(OBJEXT) array.$(OBJEXT) \
	data_config.$(OBJEXT) data_integer.$(OBJEXT) \
	data_string.$(OBJEXT) http_header.$(OBJEXT) http_kv.$(OBJEXT) \
	vector.$(OBJEXT) log.$(OBJEXT) sock_addr.$(OBJEXT)
t_test_mod_evhost_OBJECTS = $(am_t_test_mod_evhost_OBJECTS)
t_test_mod_evhost_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am_t_test_mod_simple_vhost_OBJECTS =  \
	t/test_mod_simple_vhost.$(OBJEXT) configfile-glue.$(OBJEXT) \
	buffer.$(OBJEXT) array.$(OBJEXT) data_config.$(OBJEXT) \
	data_integer.$(OBJEXT) data_string.$(OBJEXT) \
	http_header.$(OBJEXT) http_kv.$(OBJEXT) vector.$(OBJEXT) \
	log.$(OBJEXT) sock_addr.$(OBJEXT)
t_test_mod_simple_vhost_OBJECTS =  \
	$(am_t_test_mod_simple_vhost_OBJECTS)
t_test_mod_simple_vhost_DEPENDENCIES = $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am_t_test_request_OBJECTS = t/test_request.$(OBJEXT) request.$(OBJEXT) \
	buffer.$(OBJEXT) array.$(OBJEXT) data_integer.$(OBJEXT) \
	data_string.$(OBJEXT) http_header.$(OBJEXT) http_kv.$(OBJEXT) \
	log.$(OBJEXT) sock_addr.$(OBJEXT)
t_test_request_OBJECTS = $(am_t_test_request_OBJECTS)
t_test_request_DEPENDENCIES = $(am__DEPENDENCIES_1)
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo "  GEN     " $@;
am__v_GEN_1 = 
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 = 
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/array.Po ./$(DEPDIR)/base64.Po \
	./$(DEPDIR)/buffer.Po ./$(DEPDIR)/burl.Po \
	./$(DEPDIR)/configfile-glue.Po ./$(DEPDIR)/data_array.Po \
	./$(DEPDIR)/data_config.Po ./$(DEPDIR)/data_integer.Po \
	./$(DEPDIR)/data_string.Po ./$(DEPDIR)/http_header.Po \
	./$(DEPDIR)/http_kv.Po \
	./$(DEPDIR)/liblightcomp_la-algo_sha1.Plo \
	./$(DEPDIR)/liblightcomp_la-array.Plo \
	./$(DEPDIR)/liblightcomp_la-base64.Plo \
	./$(DEPDIR)/liblightcomp_la-buffer.Plo \
	./$(DEPDIR)/liblightcomp_la-burl.Plo \
	./$(DEPDIR)/liblightcomp_la-chunk.Plo \
	./$(DEPDIR)/liblightcomp_la-configfile-glue.Plo \
	./$(DEPDIR)/liblightcomp_la-connections-glue.Plo \
	./$(DEPDIR)/liblightcomp_la-crc32.Plo \
	./$(DEPDIR)/liblightcomp_la-data_array.Plo \
	./$(DEPDIR)/liblightcomp_la-data_config.Plo \
	./$(DEPDIR)/liblightcomp_la-data_integer.Plo \
	./$(DEPDIR)/liblightcomp_la-data_string.Plo \
	./$(DEPDIR)/liblightcomp_la-etag.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_libev.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_poll.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_select.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Plo \
	./$(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Plo \
	./$(DEPDIR)/liblightcomp_la-gw_backend.Plo \
	./$(DEPDIR)/liblightcomp_la-http-header-glue.Plo \
	./$(DEPDIR)/liblightcomp_la-http_auth.Plo \
	./$(DEPDIR)/liblightcomp_la-http_chunk.Plo \
	./$(DEPDIR)/liblightcomp_la-http_header.Plo \
	./$(DEPDIR)/liblightcomp_la-http_kv.Plo \
	./$(DEPDIR)/liblightcomp_la-http_vhostdb.Plo \
	./$(DEPDIR)/liblightcomp_la-joblist.Plo \
	./$(DEPDIR)/liblightcomp_la-keyvalue.Plo \
	./$(DEPDIR)/liblightcomp_la-log.Plo \
	./$(DEPDIR)/liblightcomp_la-md5.Plo \
	./$(DEPDIR)/liblightcomp_la-plugin.Plo \
	./$(DEPDIR)/liblightcomp_la-rand.Plo \
	./$(DEPDIR)/liblightcomp_la-request.Plo \
	./$(DEPDIR)/liblightcomp_la-safe_memclear.Plo \
	./$(DEPDIR)/liblightcomp_la-sock_addr.Plo \
	./$(DEPDIR)/liblightcomp_la-splaytree.Plo \
	./$(DEPDIR)/liblightcomp_la-stat_cache.Plo \
	./$(DEPDIR)/liblightcomp_la-stream.Plo \
	./$(DEPDIR)/liblightcomp_la-vector.Plo \
	./$(DEPDIR)/lighttpd-algo_sha1.Po \
	./$(DEPDIR)/lighttpd-angel.Po ./$(DEPDIR)/lighttpd-array.Po \
	./$(DEPDIR)/lighttpd-base64.Po ./$(DEPDIR)/lighttpd-buffer.Po \
	./$(DEPDIR)/lighttpd-burl.Po ./$(DEPDIR)/lighttpd-chunk.Po \
	./$(DEPDIR)/lighttpd-configfile-glue.Po \
	./$(DEPDIR)/lighttpd-configfile.Po \
	./$(DEPDIR)/lighttpd-configparser.Po \
	./$(DEPDIR)/lighttpd-connections-glue.Po \
	./$(DEPDIR)/lighttpd-connections.Po \
	./$(DEPDIR)/lighttpd-crc32.Po \
	./$(DEPDIR)/lighttpd-data_array.Po \
	./$(DEPDIR)/lighttpd-data_config.Po \
	./$(DEPDIR)/lighttpd-data_integer.Po \
	./$(DEPDIR)/lighttpd-data_string.Po \
	./$(DEPDIR)/lighttpd-etag.Po ./$(DEPDIR)/lighttpd-fdevent.Po \
	./$(DEPDIR)/lighttpd-fdevent_freebsd_kqueue.Po \
	./$(DEPDIR)/lighttpd-fdevent_libev.Po \
	./$(DEPDIR)/lighttpd-fdevent_linux_sysepoll.Po \
	./$(DEPDIR)/lighttpd-fdevent_poll.Po \
	./$(DEPDIR)/lighttpd-fdevent_select.Po \
	./$(DEPDIR)/lighttpd-fdevent_solaris_devpoll.Po \
	./$(DEPDIR)/lighttpd-fdevent_solaris_port.Po \
	./$(DEPDIR)/lighttpd-gw_backend.Po \
	./$(DEPDIR)/lighttpd-http-header-glue.Po \
	./$(DEPDIR)/lighttpd-http_auth.Po \
	./$(DEPDIR)/lighttpd-http_chunk.Po \
	./$(DEPDIR)/lighttpd-http_header.Po \
	./$(DEPDIR)/lighttpd-http_kv.Po \
	./$(DEPDIR)/lighttpd-http_vhostdb.Po \
	./$(DEPDIR)/lighttpd-inet_ntop_cache.Po \
	./$(DEPDIR)/lighttpd-joblist.Po \
	./$(DEPDIR)/lighttpd-keyvalue.Po ./$(DEPDIR)/lighttpd-log.Po \
	./$(DEPDIR)/lighttpd-md5.Po ./$(DEPDIR)/lighttpd-mod_access.Po \
	./$(DEPDIR)/lighttpd-mod_accesslog.Po \
	./$(DEPDIR)/lighttpd-mod_alias.Po \
	./$(DEPDIR)/lighttpd-mod_auth.Po \
	./$(DEPDIR)/lighttpd-mod_authn_file.Po \
	./$(DEPDIR)/lighttpd-mod_authn_gssapi.Po \
	./$(DEPDIR)/lighttpd-mod_authn_ldap.Po \
	./$(DEPDIR)/lighttpd-mod_authn_mysql.Po \
	./$(DEPDIR)/lighttpd-mod_authn_pam.Po \
	./$(DEPDIR)/lighttpd-mod_cgi.Po \
	./$(DEPDIR)/lighttpd-mod_cml.Po \
	./$(DEPDIR)/lighttpd-mod_cml_funcs.Po \
	./$(DEPDIR)/lighttpd-mod_cml_lua.Po \
	./$(DEPDIR)/lighttpd-mod_compress.Po \
	./$(DEPDIR)/lighttpd-mod_deflate.Po \
	./$(DEPDIR)/lighttpd-mod_dirlisting.Po \
	./$(DEPDIR)/lighttpd-mod_evasive.Po \
	./$(DEPDIR)/lighttpd-mod_expire.Po \
	./$(DEPDIR)/lighttpd-mod_extforward.Po \
	./$(DEPDIR)/lighttpd-mod_fastcgi.Po \
	./$(DEPDIR)/lighttpd-mod_flv_streaming.Po \
	./$(DEPDIR)/lighttpd-mod_geoip.Po \
	./$(DEPDIR)/lighttpd-mod_indexfile.Po \
	./$(DEPDIR)/lighttpd-mod_magnet.Po \
	./$(DEPDIR)/lighttpd-mod_magnet_cache.Po \
	./$(DEPDIR)/lighttpd-mod_mysql_vhost.Po \
	./$(DEPDIR)/lighttpd-mod_openssl.Po \
	./$(DEPDIR)/lighttpd-mod_proxy.Po \
	./$(DEPDIR)/lighttpd-mod_redirect.Po \
	./$(DEPDIR)/lighttpd-mod_rewrite.Po \
	./$(DEPDIR)/lighttpd-mod_rrdtool.Po \
	./$(DEPDIR)/lighttpd-mod_scgi.Po \
	./$(DEPDIR)/lighttpd-mod_secdownload.Po \
	./$(DEPDIR)/lighttpd-mod_setenv.Po \
	./$(DEPDIR)/lighttpd-mod_simple_vhost.Po \
	./$(DEPDIR)/lighttpd-mod_ssi.Po \
	./$(DEPDIR)/lighttpd-mod_ssi_expr.Po \
	./$(DEPDIR)/lighttpd-mod_ssi_exprparser.Po \
	./$(DEPDIR)/lighttpd-mod_staticfile.Po \
	./$(DEPDIR)/lighttpd-mod_status.Po \
	./$(DEPDIR)/lighttpd-mod_trigger_b4_dl.Po \
	./$(DEPDIR)/lighttpd-mod_uploadprogress.Po \
	./$(DEPDIR)/lighttpd-mod_userdir.Po \
	./$(DEPDIR)/lighttpd-mod_usertrack.Po \
	./$(DEPDIR)/lighttpd-mod_vhostdb.Po \
	./$(DEPDIR)/lighttpd-mod_vhostdb_dbi.Po \
	./$(DEPDIR)/lighttpd-mod_vhostdb_ldap.Po \
	./$(DEPDIR)/lighttpd-mod_vhostdb_mysql.Po \
	./$(DEPDIR)/lighttpd-mod_vhostdb_pgsql.Po \
	./$(DEPDIR)/lighttpd-mod_webdav.Po \
	./$(DEPDIR)/lighttpd-network.Po \
	./$(DEPDIR)/lighttpd-network_write.Po \
	./$(DEPDIR)/lighttpd-plugin.Po ./$(DEPDIR)/lighttpd-rand.Po \
	./$(DEPDIR)/lighttpd-request.Po \
	./$(DEPDIR)/lighttpd-response.Po \
	./$(DEPDIR)/lighttpd-safe_memclear.Po \
	./$(DEPDIR)/lighttpd-server.Po \
	./$(DEPDIR)/lighttpd-sock_addr.Po \
	./$(DEPDIR)/lighttpd-splaytree.Po \
	./$(DEPDIR)/lighttpd-stat_cache.Po \
	./$(DEPDIR)/lighttpd-stream.Po ./$(DEPDIR)/lighttpd-vector.Po \
	./$(DEPDIR)/log.Po ./$(DEPDIR)/mod_access.Plo \
	./$(DEPDIR)/mod_accesslog.Plo ./$(DEPDIR)/mod_alias.Plo \
	./$(DEPDIR)/mod_auth.Plo ./$(DEPDIR)/mod_authn_file.Plo \
	./$(DEPDIR)/mod_authn_gssapi.Plo \
	./$(DEPDIR)/mod_authn_ldap.Plo \
	./$(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Plo \
	./$(DEPDIR)/mod_authn_pam.Plo \
	./$(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Plo \
	./$(DEPDIR)/mod_cgi.Plo ./$(DEPDIR)/mod_cml_la-mod_cml.Plo \
	./$(DEPDIR)/mod_cml_la-mod_cml_funcs.Plo \
	./$(DEPDIR)/mod_cml_la-mod_cml_lua.Plo \
	./$(DEPDIR)/mod_compress.Plo ./$(DEPDIR)/mod_deflate.Plo \
	./$(DEPDIR)/mod_dirlisting.Plo ./$(DEPDIR)/mod_evasive.Plo \
	./$(DEPDIR)/mod_evhost.Plo ./$(DEPDIR)/mod_expire.Plo \
	./$(DEPDIR)/mod_extforward.Plo ./$(DEPDIR)/mod_fastcgi.Plo \
	./$(DEPDIR)/mod_flv_streaming.Plo ./$(DEPDIR)/mod_geoip.Plo \
	./$(DEPDIR)/mod_indexfile.Plo \
	./$(DEPDIR)/mod_magnet_la-mod_magnet.Plo \
	./$(DEPDIR)/mod_magnet_la-mod_magnet_cache.Plo \
	./$(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Plo \
	./$(DEPDIR)/mod_openssl.Plo ./$(DEPDIR)/mod_proxy.Plo \
	./$(DEPDIR)/mod_redirect.Plo ./$(DEPDIR)/mod_rewrite.Plo \
	./$(DEPDIR)/mod_rrdtool.Plo ./$(DEPDIR)/mod_scgi.Plo \
	./$(DEPDIR)/mod_secdownload.Plo ./$(DEPDIR)/mod_setenv.Plo \
	./$(DEPDIR)/mod_simple_vhost.Plo ./$(DEPDIR)/mod_sockproxy.Plo \
	./$(DEPDIR)/mod_ssi.Plo ./$(DEPDIR)/mod_ssi_expr.Plo \
	./$(DEPDIR)/mod_ssi_exprparser.Plo \
	./$(DEPDIR)/mod_staticfile.Plo ./$(DEPDIR)/mod_status.Plo \
	./$(DEPDIR)/mod_trigger_b4_dl.Plo \
	./$(DEPDIR)/mod_uploadprogress.Plo ./$(DEPDIR)/mod_userdir.Plo \
	./$(DEPDIR)/mod_usertrack.Plo ./$(DEPDIR)/mod_vhostdb.Plo \
	./$(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Plo \
	./$(DEPDIR)/mod_vhostdb_ldap.Plo \
	./$(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Plo \
	./$(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Plo \
	./$(DEPDIR)/mod_webdav_la-mod_webdav.Plo \
	./$(DEPDIR)/mod_wstunnel.Plo ./$(DEPDIR)/request.Po \
	./$(DEPDIR)/sock_addr.Po ./$(DEPDIR)/vector.Po \
	t/$(DEPDIR)/test_array.Po t/$(DEPDIR)/test_base64.Po \
	t/$(DEPDIR)/test_buffer.Po t/$(DEPDIR)/test_burl.Po \
	t/$(DEPDIR)/test_configfile.Po t/$(DEPDIR)/test_keyvalue.Po \
	t/$(DEPDIR)/test_mod_access.Po t/$(DEPDIR)/test_mod_evhost.Po \
	t/$(DEPDIR)/test_mod_simple_vhost.Po \
	t/$(DEPDIR)/test_request.Po
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo "  CC      " $@;
am__v_CC_1 = 
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo "  CCLD    " $@;
am__v_CCLD_1 = 
SOURCES = $(liblightcomp_la_SOURCES) $(mod_access_la_SOURCES) \
	$(mod_accesslog_la_SOURCES) $(mod_alias_la_SOURCES) \
	$(mod_auth_la_SOURCES) $(mod_authn_file_la_SOURCES) \
	$(mod_authn_gssapi_la_SOURCES) $(mod_authn_ldap_la_SOURCES) \
	$(mod_authn_mysql_la_SOURCES) $(mod_authn_pam_la_SOURCES) \
	$(mod_authn_sasl_la_SOURCES) $(mod_cgi_la_SOURCES) \
	$(mod_cml_la_SOURCES) $(mod_compress_la_SOURCES) \
	$(mod_deflate_la_SOURCES) $(mod_dirlisting_la_SOURCES) \
	$(mod_evasive_la_SOURCES) $(mod_evhost_la_SOURCES) \
	$(mod_expire_la_SOURCES) $(mod_extforward_la_SOURCES) \
	$(mod_fastcgi_la_SOURCES) $(mod_flv_streaming_la_SOURCES) \
	$(mod_geoip_la_SOURCES) $(mod_indexfile_la_SOURCES) \
	$(mod_magnet_la_SOURCES) $(mod_mysql_vhost_la_SOURCES) \
	$(mod_openssl_la_SOURCES) $(mod_proxy_la_SOURCES) \
	$(mod_redirect_la_SOURCES) $(mod_rewrite_la_SOURCES) \
	$(mod_rrdtool_la_SOURCES) $(mod_scgi_la_SOURCES) \
	$(mod_secdownload_la_SOURCES) $(mod_setenv_la_SOURCES) \
	$(mod_simple_vhost_la_SOURCES) $(mod_sockproxy_la_SOURCES) \
	$(mod_ssi_la_SOURCES) $(mod_staticfile_la_SOURCES) \
	$(mod_status_la_SOURCES) $(mod_trigger_b4_dl_la_SOURCES) \
	$(mod_uploadprogress_la_SOURCES) $(mod_userdir_la_SOURCES) \
	$(mod_usertrack_la_SOURCES) $(mod_vhostdb_la_SOURCES) \
	$(mod_vhostdb_dbi_la_SOURCES) $(mod_vhostdb_ldap_la_SOURCES) \
	$(mod_vhostdb_mysql_la_SOURCES) \
	$(mod_vhostdb_pgsql_la_SOURCES) $(mod_webdav_la_SOURCES) \
	$(mod_wstunnel_la_SOURCES) $(lighttpd_SOURCES) \
	$(lighttpd_angel_SOURCES) $(t_test_array_SOURCES) \
	$(t_test_base64_SOURCES) $(t_test_buffer_SOURCES) \
	$(t_test_burl_SOURCES) $(t_test_configfile_SOURCES) \
	$(t_test_keyvalue_SOURCES) $(t_test_mod_access_SOURCES) \
	$(t_test_mod_evhost_SOURCES) \
	$(t_test_mod_simple_vhost_SOURCES) $(t_test_request_SOURCES)
DIST_SOURCES = $(am__liblightcomp_la_SOURCES_DIST) \
	$(mod_access_la_SOURCES) $(mod_accesslog_la_SOURCES) \
	$(mod_alias_la_SOURCES) $(mod_auth_la_SOURCES) \
	$(mod_authn_file_la_SOURCES) \
	$(am__mod_authn_gssapi_la_SOURCES_DIST) \
	$(am__mod_authn_ldap_la_SOURCES_DIST) \
	$(am__mod_authn_mysql_la_SOURCES_DIST) \
	$(am__mod_authn_pam_la_SOURCES_DIST) \
	$(am__mod_authn_sasl_la_SOURCES_DIST) $(mod_cgi_la_SOURCES) \
	$(am__mod_cml_la_SOURCES_DIST) $(mod_compress_la_SOURCES) \
	$(mod_deflate_la_SOURCES) $(mod_dirlisting_la_SOURCES) \
	$(mod_evasive_la_SOURCES) $(mod_evhost_la_SOURCES) \
	$(mod_expire_la_SOURCES) $(mod_extforward_la_SOURCES) \
	$(mod_fastcgi_la_SOURCES) $(mod_flv_streaming_la_SOURCES) \
	$(am__mod_geoip_la_SOURCES_DIST) $(mod_indexfile_la_SOURCES) \
	$(am__mod_magnet_la_SOURCES_DIST) \
	$(am__mod_mysql_vhost_la_SOURCES_DIST) \
	$(am__mod_openssl_la_SOURCES_DIST) $(mod_proxy_la_SOURCES) \
	$(mod_redirect_la_SOURCES) $(mod_rewrite_la_SOURCES) \
	$(mod_rrdtool_la_SOURCES) $(mod_scgi_la_SOURCES) \
	$(mod_secdownload_la_SOURCES) $(mod_setenv_la_SOURCES) \
	$(mod_simple_vhost_la_SOURCES) $(mod_sockproxy_la_SOURCES) \
	$(mod_ssi_la_SOURCES) $(mod_staticfile_la_SOURCES) \
	$(mod_status_la_SOURCES) \
	$(am__mod_trigger_b4_dl_la_SOURCES_DIST) \
	$(mod_uploadprogress_la_SOURCES) $(mod_userdir_la_SOURCES) \
	$(mod_usertrack_la_SOURCES) $(mod_vhostdb_la_SOURCES) \
	$(am__mod_vhostdb_dbi_la_SOURCES_DIST) \
	$(am__mod_vhostdb_ldap_la_SOURCES_DIST) \
	$(am__mod_vhostdb_mysql_la_SOURCES_DIST) \
	$(am__mod_vhostdb_pgsql_la_SOURCES_DIST) \
	$(mod_webdav_la_SOURCES) $(mod_wstunnel_la_SOURCES) \
	$(am__lighttpd_SOURCES_DIST) $(lighttpd_angel_SOURCES) \
	$(t_test_array_SOURCES) $(t_test_base64_SOURCES) \
	$(t_test_buffer_SOURCES) $(t_test_burl_SOURCES) \
	$(t_test_configfile_SOURCES) $(t_test_keyvalue_SOURCES) \
	$(t_test_mod_access_SOURCES) $(t_test_mod_evhost_SOURCES) \
	$(t_test_mod_simple_vhost_SOURCES) $(t_test_request_SOURCES)
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
HEADERS = $(noinst_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates.  Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
  BEGIN { nonempty = 0; } \
  { items[$$0] = 1; nonempty = 1; } \
  END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique.  This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
  list='$(am__tagged_files)'; \
  unique=`for i in $$list; do \
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
am__tty_colors_dummy = \
  mgn= red= grn= lgn= blu= brg= std=; \
  am__color_tests=no
am__tty_colors = { \
  $(am__tty_colors_dummy); \
  if test "X$(AM_COLOR_TESTS)" = Xno; then \
    am__color_tests=no; \
  elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
    am__color_tests=yes; \
  elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
    am__color_tests=yes; \
  fi; \
  if test $$am__color_tests = yes; then \
    red=''; \
    grn=''; \
    lgn=''; \
    blu=''; \
    mgn=''; \
    brg=''; \
    std=''; \
  fi; \
}
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
ATTR_LIB = @ATTR_LIB@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BUILD_EXEEXT = @BUILD_EXEEXT@
BUILD_OBJEXT = @BUILD_OBJEXT@
BZ_LIB = @BZ_LIB@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CC_FOR_BUILD = @CC_FOR_BUILD@
CFLAGS = @CFLAGS@
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@
CPP_FOR_BUILD = @CPP_FOR_BUILD@
CRYPTO_LIB = @CRYPTO_LIB@
CRYPT_LIB = @CRYPT_LIB@
CYGPATH_W = @CYGPATH_W@
DBI_CFLAGS = @DBI_CFLAGS@
DBI_LIBS = @DBI_LIBS@
DEFS = @DEFS@ -DHAVE_VERSIONSTAMP_H -DLIBRARY_DIR="\"$(libdir)\"" -DSBIN_DIR="\"$(sbindir)\""
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DL_LIB = @DL_LIB@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FAM_CFLAGS = @FAM_CFLAGS@
FAM_LIBS = @FAM_LIBS@
FGREP = @FGREP@
GDBM_LIB = @GDBM_LIB@
GEOIP_LIB = @GEOIP_LIB@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
KRB5_LIB = @KRB5_LIB@
LBER_LIB = @LBER_LIB@
LD = @LD@
LDAP_LIB = @LDAP_LIB@
LDFLAGS = @LDFLAGS@
LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@
LIBEV_CFLAGS = @LIBEV_CFLAGS@
LIBEV_LIBS = @LIBEV_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBUNWIND_CFLAGS = @LIBUNWIND_CFLAGS@
LIBUNWIND_LIBS = @LIBUNWIND_LIBS@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
LUA_CFLAGS = @LUA_CFLAGS@
LUA_LIBS = @LUA_LIBS@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MEMCACHED_LIB = @MEMCACHED_LIB@
MKDIR_P = @MKDIR_P@
MYSQL_CFLAGS = @MYSQL_CFLAGS@
MYSQL_CONFIG = @MYSQL_CONFIG@
MYSQL_LIBS = @MYSQL_LIBS@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PAM_LIB = @PAM_LIB@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRECONFIG = @PCRECONFIG@
PCRE_LIB = @PCRE_LIB@
PGSQL_CONFIG = @PGSQL_CONFIG@
PGSQL_INCLUDE = @PGSQL_INCLUDE@
PGSQL_LIBS = @PGSQL_LIBS@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
RANLIB = @RANLIB@
SASL_CFLAGS = @SASL_CFLAGS@
SASL_LIBS = @SASL_LIBS@
SED = @SED@
SENDFILE_LIB = @SENDFILE_LIB@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SQLITE_CFLAGS = @SQLITE_CFLAGS@
SQLITE_LIBS = @SQLITE_LIBS@
SSL_LIB = @SSL_LIB@
STRIP = @STRIP@
UUID_LIBS = @UUID_LIBS@
VERSION = @VERSION@
XML_CFLAGS = @XML_CFLAGS@
XML_LIBS = @XML_LIBS@
Z_LIB = @Z_LIB@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CC_FOR_BUILD = @ac_ct_CC_FOR_BUILD@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AM_CFLAGS = $(FAM_CFLAGS) $(LIBUNWIND_CFLAGS)
LEMON = $(top_builddir)/src/lemon$(BUILD_EXEEXT)
TESTS = \
	t/test_array$(EXEEXT) \
	t/test_buffer$(EXEEXT) \
	t/test_burl$(EXEEXT) \
	t/test_base64$(EXEEXT) \
	t/test_configfile$(EXEEXT) \
	t/test_keyvalue$(EXEEXT) \
	t/test_mod_access$(EXEEXT) \
	t/test_mod_evhost$(EXEEXT) \
	t/test_mod_simple_vhost$(EXEEXT) \
	t/test_request$(EXEEXT)

lighttpd_angel_SOURCES = lighttpd-angel.c
BUILT_SOURCES = parsers versionstamp
MAINTAINERCLEANFILES = configparser.c configparser.h mod_ssi_exprparser.c mod_ssi_exprparser.h
CLEANFILES = versionstamp.h versionstamp.h.tmp lemon$(BUILD_EXEEXT)
common_src = base64.c buffer.c burl.c log.c \
	http_header.c http_kv.c keyvalue.c chunk.c  \
	http_chunk.c stream.c fdevent.c gw_backend.c \
	stat_cache.c plugin.c joblist.c etag.c array.c \
	data_string.c data_array.c \
	data_integer.c algo_sha1.c md5.c \
	vector.c \
	fdevent_select.c fdevent_libev.c \
	fdevent_poll.c fdevent_linux_sysepoll.c \
	fdevent_solaris_devpoll.c fdevent_solaris_port.c \
	fdevent_freebsd_kqueue.c \
	data_config.c \
	crc32.c \
	connections-glue.c \
	configfile-glue.c \
	http-header-glue.c \
	http_auth.c \
	http_vhostdb.c \
	rand.c \
	request.c \
	sock_addr.c \
	splaytree.c \
	safe_memclear.c

src = server.c response.c connections.c inet_ntop_cache.c network.c \
	network_write.c configfile.c configparser.c $(am__append_2)

#lib_LTLIBRARIES += mod_httptls.la
#mod_httptls_la_SOURCES = mod_httptls.c
#mod_httptls_la_LDFLAGS = $(common_module_ldflags)
#mod_httptls_la_LIBADD = $(common_libadd)
lib_LTLIBRARIES = $(am__append_1) mod_flv_streaming.la $(am__append_3) \
	mod_evasive.la mod_webdav.la $(am__append_4) $(am__append_5) \
	mod_vhostdb.la $(am__append_6) $(am__append_7) $(am__append_8) \
	$(am__append_9) mod_cgi.la mod_scgi.la mod_staticfile.la \
	mod_dirlisting.la mod_indexfile.la mod_setenv.la mod_alias.la \
	mod_userdir.la mod_rrdtool.la mod_usertrack.la mod_proxy.la \
	mod_sockproxy.la mod_ssi.la mod_secdownload.la mod_expire.la \
	mod_evhost.la mod_simple_vhost.la mod_fastcgi.la \
	mod_extforward.la mod_access.la mod_compress.la mod_deflate.la \
	mod_auth.la mod_authn_file.la $(am__append_10) \
	$(am__append_11) $(am__append_12) $(am__append_13) \
	$(am__append_14) $(am__append_15) mod_rewrite.la \
	mod_redirect.la mod_status.la mod_accesslog.la \
	mod_uploadprogress.la mod_wstunnel.la
@NO_RDYNAMIC_FALSE@common_ldflags = -avoid-version

# if the linker doesn't allow referencing symbols of the binary
# we have to put everything into a shared-lib and link it into
# everything
@NO_RDYNAMIC_TRUE@common_ldflags = -avoid-version -no-undefined
@NO_RDYNAMIC_TRUE@liblightcomp_la_SOURCES = $(common_src)
@NO_RDYNAMIC_TRUE@liblightcomp_la_CFLAGS = $(AM_CFLAGS) $(LIBEV_CFLAGS)
@NO_RDYNAMIC_TRUE@liblightcomp_la_LDFLAGS = $(common_ldflags)
@NO_RDYNAMIC_TRUE@liblightcomp_la_LIBADD = $(PCRE_LIB) $(CRYPTO_LIB) $(FAM_LIBS) $(LIBEV_LIBS) $(ATTR_LIB)
@NO_RDYNAMIC_FALSE@common_libadd = 
@NO_RDYNAMIC_TRUE@common_libadd = liblightcomp.la
common_module_ldflags = -module -export-dynamic $(common_ldflags)
mod_flv_streaming_la_SOURCES = mod_flv_streaming.c
mod_flv_streaming_la_LDFLAGS = $(common_module_ldflags)
mod_flv_streaming_la_LIBADD = $(common_libadd)
@BUILD_WITH_GEOIP_TRUE@mod_geoip_la_SOURCES = mod_geoip.c
@BUILD_WITH_GEOIP_TRUE@mod_geoip_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_GEOIP_TRUE@mod_geoip_la_LIBADD = $(common_libadd) $(GEOIP_LIB)
mod_evasive_la_SOURCES = mod_evasive.c
mod_evasive_la_LDFLAGS = $(common_module_ldflags)
mod_evasive_la_LIBADD = $(common_libadd)
mod_webdav_la_SOURCES = mod_webdav.c
mod_webdav_la_CFLAGS = $(AM_CFLAGS) $(XML_CFLAGS) $(SQLITE_CFLAGS) 
mod_webdav_la_LDFLAGS = $(common_module_ldflags)
mod_webdav_la_LIBADD = $(common_libadd) $(XML_LIBS) $(SQLITE_LIBS) $(UUID_LIBS)
@BUILD_WITH_LUA_TRUE@mod_magnet_la_SOURCES = mod_magnet.c mod_magnet_cache.c
@BUILD_WITH_LUA_TRUE@mod_magnet_la_CFLAGS = $(AM_CFLAGS) $(LUA_CFLAGS)
@BUILD_WITH_LUA_TRUE@mod_magnet_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_LUA_TRUE@mod_magnet_la_LIBADD = $(common_libadd) $(LUA_LIBS) -lm
@BUILD_WITH_LUA_TRUE@mod_cml_la_SOURCES = mod_cml.c mod_cml_lua.c mod_cml_funcs.c
@BUILD_WITH_LUA_TRUE@mod_cml_la_CFLAGS = $(AM_CFLAGS) $(LUA_CFLAGS)
@BUILD_WITH_LUA_TRUE@mod_cml_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_LUA_TRUE@mod_cml_la_LIBADD = $(MEMCACHED_LIB) $(common_libadd) $(LUA_LIBS) -lm
@BUILD_MOD_TRIGGER_B4_DL_TRUE@mod_trigger_b4_dl_la_SOURCES = mod_trigger_b4_dl.c
@BUILD_MOD_TRIGGER_B4_DL_TRUE@mod_trigger_b4_dl_la_LDFLAGS = $(common_module_ldflags)
@BUILD_MOD_TRIGGER_B4_DL_TRUE@mod_trigger_b4_dl_la_LIBADD = $(GDBM_LIB) $(MEMCACHED_LIB) $(PCRE_LIB) $(common_libadd)
mod_vhostdb_la_SOURCES = mod_vhostdb.c
mod_vhostdb_la_LDFLAGS = $(common_module_ldflags)
mod_vhostdb_la_LIBADD = $(common_libadd)
@BUILD_WITH_LDAP_TRUE@mod_vhostdb_ldap_la_SOURCES = mod_vhostdb_ldap.c
@BUILD_WITH_LDAP_TRUE@mod_vhostdb_ldap_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_LDAP_TRUE@mod_vhostdb_ldap_la_LIBADD = $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
@BUILD_WITH_MYSQL_TRUE@mod_mysql_vhost_la_SOURCES = mod_mysql_vhost.c
@BUILD_WITH_MYSQL_TRUE@mod_mysql_vhost_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_MYSQL_TRUE@mod_mysql_vhost_la_LIBADD = $(MYSQL_LIBS) $(common_libadd)
@BUILD_WITH_MYSQL_TRUE@mod_mysql_vhost_la_CPPFLAGS = $(MYSQL_CFLAGS)
@BUILD_WITH_MYSQL_TRUE@mod_vhostdb_mysql_la_SOURCES = mod_vhostdb_mysql.c
@BUILD_WITH_MYSQL_TRUE@mod_vhostdb_mysql_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_MYSQL_TRUE@mod_vhostdb_mysql_la_LIBADD = $(MYSQL_LIBS) $(common_libadd)
@BUILD_WITH_MYSQL_TRUE@mod_vhostdb_mysql_la_CPPFLAGS = $(MYSQL_CFLAGS)
@BUILD_WITH_PGSQL_TRUE@mod_vhostdb_pgsql_la_SOURCES = mod_vhostdb_pgsql.c
@BUILD_WITH_PGSQL_TRUE@mod_vhostdb_pgsql_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_PGSQL_TRUE@mod_vhostdb_pgsql_la_LIBADD = $(PGSQL_LIBS) $(common_libadd)
@BUILD_WITH_PGSQL_TRUE@mod_vhostdb_pgsql_la_CPPFLAGS = $(PGSQL_INCLUDE)
@BUILD_WITH_DBI_TRUE@mod_vhostdb_dbi_la_SOURCES = mod_vhostdb_dbi.c
@BUILD_WITH_DBI_TRUE@mod_vhostdb_dbi_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_DBI_TRUE@mod_vhostdb_dbi_la_LIBADD = $(DBI_LIBS) $(common_libadd)
@BUILD_WITH_DBI_TRUE@mod_vhostdb_dbi_la_CPPFLAGS = $(DBI_CFLAGS)
mod_cgi_la_SOURCES = mod_cgi.c
mod_cgi_la_LDFLAGS = $(common_module_ldflags)
mod_cgi_la_LIBADD = $(common_libadd)
mod_scgi_la_SOURCES = mod_scgi.c
mod_scgi_la_LDFLAGS = $(common_module_ldflags)
mod_scgi_la_LIBADD = $(common_libadd)
mod_staticfile_la_SOURCES = mod_staticfile.c
mod_staticfile_la_LDFLAGS = $(common_module_ldflags)
mod_staticfile_la_LIBADD = $(common_libadd)
mod_dirlisting_la_SOURCES = mod_dirlisting.c
mod_dirlisting_la_LDFLAGS = $(common_module_ldflags)
mod_dirlisting_la_LIBADD = $(common_libadd) $(PCRE_LIB)
mod_indexfile_la_SOURCES = mod_indexfile.c
mod_indexfile_la_LDFLAGS = $(common_module_ldflags)
mod_indexfile_la_LIBADD = $(common_libadd)
mod_setenv_la_SOURCES = mod_setenv.c
mod_setenv_la_LDFLAGS = $(common_module_ldflags)
mod_setenv_la_LIBADD = $(common_libadd)
mod_alias_la_SOURCES = mod_alias.c
mod_alias_la_LDFLAGS = $(common_module_ldflags)
mod_alias_la_LIBADD = $(common_libadd)
mod_userdir_la_SOURCES = mod_userdir.c
mod_userdir_la_LDFLAGS = $(common_module_ldflags)
mod_userdir_la_LIBADD = $(common_libadd)
mod_rrdtool_la_SOURCES = mod_rrdtool.c
mod_rrdtool_la_LDFLAGS = $(common_module_ldflags)
mod_rrdtool_la_LIBADD = $(common_libadd)
mod_usertrack_la_SOURCES = mod_usertrack.c
mod_usertrack_la_LDFLAGS = $(common_module_ldflags)
mod_usertrack_la_LIBADD = $(common_libadd)
mod_proxy_la_SOURCES = mod_proxy.c
mod_proxy_la_LDFLAGS = $(common_module_ldflags)
mod_proxy_la_LIBADD = $(common_libadd)
mod_sockproxy_la_SOURCES = mod_sockproxy.c
mod_sockproxy_la_LDFLAGS = $(common_module_ldflags)
mod_sockproxy_la_LIBADD = $(common_libadd)
mod_ssi_la_SOURCES = mod_ssi_exprparser.c mod_ssi_expr.c mod_ssi.c
mod_ssi_la_LDFLAGS = $(common_module_ldflags)
mod_ssi_la_LIBADD = $(common_libadd)
mod_secdownload_la_SOURCES = mod_secdownload.c
mod_secdownload_la_LDFLAGS = $(common_module_ldflags)
mod_secdownload_la_LIBADD = $(common_libadd) $(CRYPTO_LIB)
mod_expire_la_SOURCES = mod_expire.c
mod_expire_la_LDFLAGS = $(common_module_ldflags)
mod_expire_la_LIBADD = $(common_libadd)
mod_evhost_la_SOURCES = mod_evhost.c
mod_evhost_la_LDFLAGS = $(common_module_ldflags)
mod_evhost_la_LIBADD = $(common_libadd)
mod_simple_vhost_la_SOURCES = mod_simple_vhost.c
mod_simple_vhost_la_LDFLAGS = $(common_module_ldflags)
mod_simple_vhost_la_LIBADD = $(common_libadd)
mod_fastcgi_la_SOURCES = mod_fastcgi.c
mod_fastcgi_la_LDFLAGS = $(common_module_ldflags)
mod_fastcgi_la_LIBADD = $(common_libadd)
mod_extforward_la_SOURCES = mod_extforward.c
mod_extforward_la_LDFLAGS = $(common_module_ldflags)
mod_extforward_la_LIBADD = $(common_libadd)
mod_access_la_SOURCES = mod_access.c
mod_access_la_LDFLAGS = $(common_module_ldflags)
mod_access_la_LIBADD = $(common_libadd)
mod_compress_la_SOURCES = mod_compress.c
mod_compress_la_LDFLAGS = $(common_module_ldflags)
mod_compress_la_LIBADD = $(Z_LIB) $(BZ_LIB) $(common_libadd)
mod_deflate_la_SOURCES = mod_deflate.c
mod_deflate_la_LDFLAGS = $(common_module_ldflags)
mod_deflate_la_LIBADD = $(Z_LIB) $(BZ_LIB) $(common_libadd)
mod_auth_la_SOURCES = mod_auth.c
mod_auth_la_LDFLAGS = $(common_module_ldflags)
mod_auth_la_LIBADD = $(common_libadd)
mod_authn_file_la_SOURCES = mod_authn_file.c
mod_authn_file_la_LDFLAGS = $(common_module_ldflags)
mod_authn_file_la_LIBADD = $(CRYPT_LIB) $(CRYPTO_LIB) $(common_libadd)
@BUILD_WITH_KRB5_TRUE@mod_authn_gssapi_la_SOURCES = mod_authn_gssapi.c
@BUILD_WITH_KRB5_TRUE@mod_authn_gssapi_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_KRB5_TRUE@mod_authn_gssapi_la_LIBADD = $(KRB5_LIB) $(common_libadd)
@BUILD_WITH_LDAP_TRUE@mod_authn_ldap_la_SOURCES = mod_authn_ldap.c
@BUILD_WITH_LDAP_TRUE@mod_authn_ldap_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_LDAP_TRUE@mod_authn_ldap_la_LIBADD = $(LDAP_LIB) $(LBER_LIB) $(common_libadd)
@BUILD_WITH_PAM_TRUE@mod_authn_pam_la_SOURCES = mod_authn_pam.c
@BUILD_WITH_PAM_TRUE@mod_authn_pam_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_PAM_TRUE@mod_authn_pam_la_LIBADD = $(PAM_LIB) $(common_libadd)
@BUILD_WITH_MYSQL_TRUE@mod_authn_mysql_la_SOURCES = mod_authn_mysql.c
@BUILD_WITH_MYSQL_TRUE@mod_authn_mysql_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_MYSQL_TRUE@mod_authn_mysql_la_LIBADD = $(CRYPT_LIB) $(MYSQL_LIBS) $(common_libadd)
@BUILD_WITH_MYSQL_TRUE@mod_authn_mysql_la_CPPFLAGS = $(MYSQL_CFLAGS)
@BUILD_WITH_SASL_TRUE@mod_authn_sasl_la_SOURCES = mod_authn_sasl.c
@BUILD_WITH_SASL_TRUE@mod_authn_sasl_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_SASL_TRUE@mod_authn_sasl_la_LIBADD = $(SASL_LIBS) $(common_libadd)
@BUILD_WITH_SASL_TRUE@mod_authn_sasl_la_CPPFLAGS = $(SASL_CFLAGS)
@BUILD_WITH_OPENSSL_TRUE@mod_openssl_la_SOURCES = mod_openssl.c
@BUILD_WITH_OPENSSL_TRUE@mod_openssl_la_LDFLAGS = $(common_module_ldflags)
@BUILD_WITH_OPENSSL_TRUE@mod_openssl_la_LIBADD = $(SSL_LIB) $(common_libadd)
mod_rewrite_la_SOURCES = mod_rewrite.c
mod_rewrite_la_LDFLAGS = $(common_module_ldflags)
mod_rewrite_la_LIBADD = $(PCRE_LIB) $(common_libadd)
mod_redirect_la_SOURCES = mod_redirect.c
mod_redirect_la_LDFLAGS = $(common_module_ldflags)
mod_redirect_la_LIBADD = $(PCRE_LIB) $(common_libadd)
mod_status_la_SOURCES = mod_status.c
mod_status_la_LDFLAGS = $(common_module_ldflags)
mod_status_la_LIBADD = $(common_libadd)
mod_accesslog_la_SOURCES = mod_accesslog.c
mod_accesslog_la_LDFLAGS = $(common_module_ldflags)
mod_accesslog_la_LIBADD = $(common_libadd)
mod_uploadprogress_la_SOURCES = mod_uploadprogress.c
mod_uploadprogress_la_LDFLAGS = $(common_module_ldflags)
mod_uploadprogress_la_LIBADD = $(common_libadd)
mod_wstunnel_la_SOURCES = mod_wstunnel.c
mod_wstunnel_la_LDFLAGS = $(common_module_ldflags)
mod_wstunnel_la_LIBADD = $(common_libadd) $(CRYPTO_LIB)
hdr = server.h base64.h buffer.h burl.h network.h log.h http_kv.h keyvalue.h \
	response.h request.h fastcgi.h chunk.h \
	first.h settings.h http_chunk.h \
	algo_sha1.h md5.h http_auth.h http_header.h http_vhostdb.h stream.h \
	fdevent.h gw_backend.h connections.h base.h base_decls.h stat_cache.h \
	plugin.h \
	etag.h joblist.h array.h vector.h crc32.h \
	fdevent_impl.h network_write.h configfile.h \
	mod_ssi.h mod_ssi_expr.h inet_ntop_cache.h \
	configparser.h mod_ssi_exprparser.h \
	rand.h \
	sys-crypto.h sys-endian.h sys-mmap.h sys-socket.h sys-strings.h \
	mod_cml.h mod_cml_funcs.h \
	safe_memclear.h sock_addr.h splaytree.h status_counter.h \
	mod_magnet_cache.h

@LIGHTTPD_STATIC_FALSE@lighttpd_SOURCES = $(src)
@LIGHTTPD_STATIC_TRUE@lighttpd_SOURCES = $(src) mod_access.c \
@LIGHTTPD_STATIC_TRUE@	mod_accesslog.c mod_alias.c mod_auth.c \
@LIGHTTPD_STATIC_TRUE@	mod_authn_file.c mod_cgi.c \
@LIGHTTPD_STATIC_TRUE@	mod_compress.c mod_deflate.c \
@LIGHTTPD_STATIC_TRUE@	mod_dirlisting.c mod_evasive.c \
@LIGHTTPD_STATIC_TRUE@	mod_expire.c mod_extforward.c \
@LIGHTTPD_STATIC_TRUE@	mod_fastcgi.c mod_flv_streaming.c \
@LIGHTTPD_STATIC_TRUE@	mod_indexfile.c mod_proxy.c \
@LIGHTTPD_STATIC_TRUE@	mod_redirect.c mod_rewrite.c \
@LIGHTTPD_STATIC_TRUE@	mod_rrdtool.c mod_scgi.c \
@LIGHTTPD_STATIC_TRUE@	mod_secdownload.c mod_setenv.c \
@LIGHTTPD_STATIC_TRUE@	mod_simple_vhost.c mod_ssi_exprparser.c \
@LIGHTTPD_STATIC_TRUE@	mod_ssi_expr.c mod_ssi.c \
@LIGHTTPD_STATIC_TRUE@	mod_staticfile.c mod_status.c \
@LIGHTTPD_STATIC_TRUE@	mod_uploadprogress.c mod_userdir.c \
@LIGHTTPD_STATIC_TRUE@	mod_usertrack.c mod_vhostdb.c \
@LIGHTTPD_STATIC_TRUE@	mod_webdav.c $(am__append_16) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_18) $(am__append_21) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_23) $(am__append_25) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_27) $(am__append_30) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_33) $(am__append_36) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_41)
@LIGHTTPD_STATIC_FALSE@lighttpd_CPPFLAGS = $(FAM_CFLAGS) $(LIBEV_CFLAGS)
@LIGHTTPD_STATIC_TRUE@lighttpd_CPPFLAGS = -DLIGHTTPD_STATIC \
@LIGHTTPD_STATIC_TRUE@	$(XML_CFLAGS) $(SQLITE_CFLAGS) \
@LIGHTTPD_STATIC_TRUE@	$(FAM_CFLAGS) $(LIBEV_CFLAGS) \
@LIGHTTPD_STATIC_TRUE@	$(LIBUNWIND_CFLAGS) $(am__append_19) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_28) $(am__append_31) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_34) $(am__append_38)
@LIGHTTPD_STATIC_FALSE@lighttpd_LDADD = $(PCRE_LIB) $(DL_LIB) $(SENDFILE_LIB) $(ATTR_LIB) $(common_libadd) $(CRYPTO_LIB) $(FAM_LIBS) $(LIBEV_LIBS) $(LIBUNWIND_LIBS)
@LIGHTTPD_STATIC_TRUE@lighttpd_LDADD = $(common_libadd) $(CRYPT_LIB) \
@LIGHTTPD_STATIC_TRUE@	$(CRYPTO_LIB) $(XML_LIBS) $(SQLITE_LIBS) \
@LIGHTTPD_STATIC_TRUE@	$(UUID_LIBS) $(PCRE_LIB) $(Z_LIB) \
@LIGHTTPD_STATIC_TRUE@	$(BZ_LIB) $(DL_LIB) $(SENDFILE_LIB) \
@LIGHTTPD_STATIC_TRUE@	$(ATTR_LIB) $(FAM_LIBS) $(LIBEV_LIBS) \
@LIGHTTPD_STATIC_TRUE@	$(LIBUNWIND_LIBS) $(am__append_17) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_20) $(am__append_22) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_24) $(am__append_26) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_29) $(am__append_32) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_35) $(am__append_37) \
@LIGHTTPD_STATIC_TRUE@	$(am__append_39) $(am__append_40)
@LIGHTTPD_STATIC_FALSE@lighttpd_LDFLAGS = -export-dynamic
@LIGHTTPD_STATIC_TRUE@lighttpd_LDFLAGS = -export-dynamic
t_test_array_SOURCES = t/test_array.c array.c data_array.c data_integer.c data_string.c buffer.c
t_test_array_LDADD = $(LIBUNWIND_LIBS)
t_test_buffer_SOURCES = t/test_buffer.c buffer.c
t_test_buffer_LDADD = $(LIBUNWIND_LIBS)
t_test_base64_SOURCES = t/test_base64.c base64.c buffer.c
t_test_base64_LDADD = $(LIBUNWIND_LIBS)
t_test_burl_SOURCES = t/test_burl.c burl.c buffer.c base64.c
t_test_burl_LDADD = $(LIBUNWIND_LIBS)
t_test_configfile_SOURCES = t/test_configfile.c buffer.c array.c data_config.c data_integer.c data_string.c http_header.c http_kv.c vector.c log.c sock_addr.c
t_test_configfile_LDADD = $(PCRE_LIB) $(LIBUNWIND_LIBS)
t_test_keyvalue_SOURCES = t/test_keyvalue.c burl.c buffer.c base64.c array.c data_integer.c data_string.c log.c
t_test_keyvalue_LDADD = $(PCRE_LIB) $(LIBUNWIND_LIBS)
t_test_mod_access_SOURCES = t/test_mod_access.c configfile-glue.c buffer.c array.c data_config.c data_integer.c data_string.c http_header.c http_kv.c vector.c log.c sock_addr.c
t_test_mod_access_LDADD = $(PCRE_LIB) $(LIBUNWIND_LIBS)
t_test_mod_evhost_SOURCES = t/test_mod_evhost.c configfile-glue.c buffer.c array.c data_config.c data_integer.c data_string.c http_header.c http_kv.c vector.c log.c sock_addr.c
t_test_mod_evhost_LDADD = $(PCRE_LIB) $(LIBUNWIND_LIBS)
t_test_mod_simple_vhost_SOURCES = t/test_mod_simple_vhost.c configfile-glue.c buffer.c array.c data_config.c data_integer.c data_string.c http_header.c http_kv.c vector.c log.c sock_addr.c
t_test_mod_simple_vhost_LDADD = $(PCRE_LIB) $(LIBUNWIND_LIBS)
t_test_request_SOURCES = t/test_request.c request.c buffer.c array.c data_integer.c data_string.c http_header.c http_kv.c log.c sock_addr.c
t_test_request_LDADD = $(LIBUNWIND_LIBS)
noinst_HEADERS = $(hdr)
EXTRA_DIST = \
	mod_skeleton.c \
	configparser.y \
	mod_ssi_exprparser.y \
	lemon.c \
	lempar.c \
	SConscript \
	CMakeLists.txt config.h.cmake \
	meson.build

all: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) all-am

.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign src/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
	esac;

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh

$(top_srcdir)/configure:  $(am__configure_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):

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

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

clean-sbinPROGRAMS:
	@list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
	echo " rm -f" $$list; \
	rm -f $$list || exit $$?; \
	test -n "$(EXEEXT)" || exit 0; \
	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
	echo " rm -f" $$list; \
	rm -f $$list

install-libLTLIBRARIES: $(lib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
	list2=; for p in $$list; do \
	  if test -f $$p; then \
	    list2="$$list2 $$p"; \
	  else :; fi; \
	done; \
	test -z "$$list2" || { \
	  echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
	}

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

clean-libLTLIBRARIES:
	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
	@list='$(lib_LTLIBRARIES)'; \
	locs=`for p in $$list; do echo $$p; done | \
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
	      sort -u`; \
	test -z "$$locs" || { \
	  echo rm -f $${locs}; \
	  rm -f $${locs}; \
	}

liblightcomp.la: $(liblightcomp_la_OBJECTS) $(liblightcomp_la_DEPENDENCIES) $(EXTRA_liblightcomp_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(liblightcomp_la_LINK) $(am_liblightcomp_la_rpath) $(liblightcomp_la_OBJECTS) $(liblightcomp_la_LIBADD) $(LIBS)

mod_access.la: $(mod_access_la_OBJECTS) $(mod_access_la_DEPENDENCIES) $(EXTRA_mod_access_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_access_la_LINK) -rpath $(libdir) $(mod_access_la_OBJECTS) $(mod_access_la_LIBADD) $(LIBS)

mod_accesslog.la: $(mod_accesslog_la_OBJECTS) $(mod_accesslog_la_DEPENDENCIES) $(EXTRA_mod_accesslog_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_accesslog_la_LINK) -rpath $(libdir) $(mod_accesslog_la_OBJECTS) $(mod_accesslog_la_LIBADD) $(LIBS)

mod_alias.la: $(mod_alias_la_OBJECTS) $(mod_alias_la_DEPENDENCIES) $(EXTRA_mod_alias_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_alias_la_LINK) -rpath $(libdir) $(mod_alias_la_OBJECTS) $(mod_alias_la_LIBADD) $(LIBS)

mod_auth.la: $(mod_auth_la_OBJECTS) $(mod_auth_la_DEPENDENCIES) $(EXTRA_mod_auth_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_auth_la_LINK) -rpath $(libdir) $(mod_auth_la_OBJECTS) $(mod_auth_la_LIBADD) $(LIBS)

mod_authn_file.la: $(mod_authn_file_la_OBJECTS) $(mod_authn_file_la_DEPENDENCIES) $(EXTRA_mod_authn_file_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_authn_file_la_LINK) -rpath $(libdir) $(mod_authn_file_la_OBJECTS) $(mod_authn_file_la_LIBADD) $(LIBS)

mod_authn_gssapi.la: $(mod_authn_gssapi_la_OBJECTS) $(mod_authn_gssapi_la_DEPENDENCIES) $(EXTRA_mod_authn_gssapi_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_authn_gssapi_la_LINK) $(am_mod_authn_gssapi_la_rpath) $(mod_authn_gssapi_la_OBJECTS) $(mod_authn_gssapi_la_LIBADD) $(LIBS)

mod_authn_ldap.la: $(mod_authn_ldap_la_OBJECTS) $(mod_authn_ldap_la_DEPENDENCIES) $(EXTRA_mod_authn_ldap_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_authn_ldap_la_LINK) $(am_mod_authn_ldap_la_rpath) $(mod_authn_ldap_la_OBJECTS) $(mod_authn_ldap_la_LIBADD) $(LIBS)

mod_authn_mysql.la: $(mod_authn_mysql_la_OBJECTS) $(mod_authn_mysql_la_DEPENDENCIES) $(EXTRA_mod_authn_mysql_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_authn_mysql_la_LINK) $(am_mod_authn_mysql_la_rpath) $(mod_authn_mysql_la_OBJECTS) $(mod_authn_mysql_la_LIBADD) $(LIBS)

mod_authn_pam.la: $(mod_authn_pam_la_OBJECTS) $(mod_authn_pam_la_DEPENDENCIES) $(EXTRA_mod_authn_pam_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_authn_pam_la_LINK) $(am_mod_authn_pam_la_rpath) $(mod_authn_pam_la_OBJECTS) $(mod_authn_pam_la_LIBADD) $(LIBS)

mod_authn_sasl.la: $(mod_authn_sasl_la_OBJECTS) $(mod_authn_sasl_la_DEPENDENCIES) $(EXTRA_mod_authn_sasl_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_authn_sasl_la_LINK) $(am_mod_authn_sasl_la_rpath) $(mod_authn_sasl_la_OBJECTS) $(mod_authn_sasl_la_LIBADD) $(LIBS)

mod_cgi.la: $(mod_cgi_la_OBJECTS) $(mod_cgi_la_DEPENDENCIES) $(EXTRA_mod_cgi_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_cgi_la_LINK) -rpath $(libdir) $(mod_cgi_la_OBJECTS) $(mod_cgi_la_LIBADD) $(LIBS)

mod_cml.la: $(mod_cml_la_OBJECTS) $(mod_cml_la_DEPENDENCIES) $(EXTRA_mod_cml_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_cml_la_LINK) $(am_mod_cml_la_rpath) $(mod_cml_la_OBJECTS) $(mod_cml_la_LIBADD) $(LIBS)

mod_compress.la: $(mod_compress_la_OBJECTS) $(mod_compress_la_DEPENDENCIES) $(EXTRA_mod_compress_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_compress_la_LINK) -rpath $(libdir) $(mod_compress_la_OBJECTS) $(mod_compress_la_LIBADD) $(LIBS)

mod_deflate.la: $(mod_deflate_la_OBJECTS) $(mod_deflate_la_DEPENDENCIES) $(EXTRA_mod_deflate_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_deflate_la_LINK) -rpath $(libdir) $(mod_deflate_la_OBJECTS) $(mod_deflate_la_LIBADD) $(LIBS)

mod_dirlisting.la: $(mod_dirlisting_la_OBJECTS) $(mod_dirlisting_la_DEPENDENCIES) $(EXTRA_mod_dirlisting_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_dirlisting_la_LINK) -rpath $(libdir) $(mod_dirlisting_la_OBJECTS) $(mod_dirlisting_la_LIBADD) $(LIBS)

mod_evasive.la: $(mod_evasive_la_OBJECTS) $(mod_evasive_la_DEPENDENCIES) $(EXTRA_mod_evasive_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_evasive_la_LINK) -rpath $(libdir) $(mod_evasive_la_OBJECTS) $(mod_evasive_la_LIBADD) $(LIBS)

mod_evhost.la: $(mod_evhost_la_OBJECTS) $(mod_evhost_la_DEPENDENCIES) $(EXTRA_mod_evhost_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_evhost_la_LINK) -rpath $(libdir) $(mod_evhost_la_OBJECTS) $(mod_evhost_la_LIBADD) $(LIBS)

mod_expire.la: $(mod_expire_la_OBJECTS) $(mod_expire_la_DEPENDENCIES) $(EXTRA_mod_expire_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_expire_la_LINK) -rpath $(libdir) $(mod_expire_la_OBJECTS) $(mod_expire_la_LIBADD) $(LIBS)

mod_extforward.la: $(mod_extforward_la_OBJECTS) $(mod_extforward_la_DEPENDENCIES) $(EXTRA_mod_extforward_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_extforward_la_LINK) -rpath $(libdir) $(mod_extforward_la_OBJECTS) $(mod_extforward_la_LIBADD) $(LIBS)

mod_fastcgi.la: $(mod_fastcgi_la_OBJECTS) $(mod_fastcgi_la_DEPENDENCIES) $(EXTRA_mod_fastcgi_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_fastcgi_la_LINK) -rpath $(libdir) $(mod_fastcgi_la_OBJECTS) $(mod_fastcgi_la_LIBADD) $(LIBS)

mod_flv_streaming.la: $(mod_flv_streaming_la_OBJECTS) $(mod_flv_streaming_la_DEPENDENCIES) $(EXTRA_mod_flv_streaming_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_flv_streaming_la_LINK) -rpath $(libdir) $(mod_flv_streaming_la_OBJECTS) $(mod_flv_streaming_la_LIBADD) $(LIBS)

mod_geoip.la: $(mod_geoip_la_OBJECTS) $(mod_geoip_la_DEPENDENCIES) $(EXTRA_mod_geoip_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_geoip_la_LINK) $(am_mod_geoip_la_rpath) $(mod_geoip_la_OBJECTS) $(mod_geoip_la_LIBADD) $(LIBS)

mod_indexfile.la: $(mod_indexfile_la_OBJECTS) $(mod_indexfile_la_DEPENDENCIES) $(EXTRA_mod_indexfile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_indexfile_la_LINK) -rpath $(libdir) $(mod_indexfile_la_OBJECTS) $(mod_indexfile_la_LIBADD) $(LIBS)

mod_magnet.la: $(mod_magnet_la_OBJECTS) $(mod_magnet_la_DEPENDENCIES) $(EXTRA_mod_magnet_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_magnet_la_LINK) $(am_mod_magnet_la_rpath) $(mod_magnet_la_OBJECTS) $(mod_magnet_la_LIBADD) $(LIBS)

mod_mysql_vhost.la: $(mod_mysql_vhost_la_OBJECTS) $(mod_mysql_vhost_la_DEPENDENCIES) $(EXTRA_mod_mysql_vhost_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_mysql_vhost_la_LINK) $(am_mod_mysql_vhost_la_rpath) $(mod_mysql_vhost_la_OBJECTS) $(mod_mysql_vhost_la_LIBADD) $(LIBS)

mod_openssl.la: $(mod_openssl_la_OBJECTS) $(mod_openssl_la_DEPENDENCIES) $(EXTRA_mod_openssl_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_openssl_la_LINK) $(am_mod_openssl_la_rpath) $(mod_openssl_la_OBJECTS) $(mod_openssl_la_LIBADD) $(LIBS)

mod_proxy.la: $(mod_proxy_la_OBJECTS) $(mod_proxy_la_DEPENDENCIES) $(EXTRA_mod_proxy_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_proxy_la_LINK) -rpath $(libdir) $(mod_proxy_la_OBJECTS) $(mod_proxy_la_LIBADD) $(LIBS)

mod_redirect.la: $(mod_redirect_la_OBJECTS) $(mod_redirect_la_DEPENDENCIES) $(EXTRA_mod_redirect_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_redirect_la_LINK) -rpath $(libdir) $(mod_redirect_la_OBJECTS) $(mod_redirect_la_LIBADD) $(LIBS)

mod_rewrite.la: $(mod_rewrite_la_OBJECTS) $(mod_rewrite_la_DEPENDENCIES) $(EXTRA_mod_rewrite_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_rewrite_la_LINK) -rpath $(libdir) $(mod_rewrite_la_OBJECTS) $(mod_rewrite_la_LIBADD) $(LIBS)

mod_rrdtool.la: $(mod_rrdtool_la_OBJECTS) $(mod_rrdtool_la_DEPENDENCIES) $(EXTRA_mod_rrdtool_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_rrdtool_la_LINK) -rpath $(libdir) $(mod_rrdtool_la_OBJECTS) $(mod_rrdtool_la_LIBADD) $(LIBS)

mod_scgi.la: $(mod_scgi_la_OBJECTS) $(mod_scgi_la_DEPENDENCIES) $(EXTRA_mod_scgi_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_scgi_la_LINK) -rpath $(libdir) $(mod_scgi_la_OBJECTS) $(mod_scgi_la_LIBADD) $(LIBS)

mod_secdownload.la: $(mod_secdownload_la_OBJECTS) $(mod_secdownload_la_DEPENDENCIES) $(EXTRA_mod_secdownload_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_secdownload_la_LINK) -rpath $(libdir) $(mod_secdownload_la_OBJECTS) $(mod_secdownload_la_LIBADD) $(LIBS)

mod_setenv.la: $(mod_setenv_la_OBJECTS) $(mod_setenv_la_DEPENDENCIES) $(EXTRA_mod_setenv_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_setenv_la_LINK) -rpath $(libdir) $(mod_setenv_la_OBJECTS) $(mod_setenv_la_LIBADD) $(LIBS)

mod_simple_vhost.la: $(mod_simple_vhost_la_OBJECTS) $(mod_simple_vhost_la_DEPENDENCIES) $(EXTRA_mod_simple_vhost_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_simple_vhost_la_LINK) -rpath $(libdir) $(mod_simple_vhost_la_OBJECTS) $(mod_simple_vhost_la_LIBADD) $(LIBS)

mod_sockproxy.la: $(mod_sockproxy_la_OBJECTS) $(mod_sockproxy_la_DEPENDENCIES) $(EXTRA_mod_sockproxy_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_sockproxy_la_LINK) -rpath $(libdir) $(mod_sockproxy_la_OBJECTS) $(mod_sockproxy_la_LIBADD) $(LIBS)

mod_ssi.la: $(mod_ssi_la_OBJECTS) $(mod_ssi_la_DEPENDENCIES) $(EXTRA_mod_ssi_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_ssi_la_LINK) -rpath $(libdir) $(mod_ssi_la_OBJECTS) $(mod_ssi_la_LIBADD) $(LIBS)

mod_staticfile.la: $(mod_staticfile_la_OBJECTS) $(mod_staticfile_la_DEPENDENCIES) $(EXTRA_mod_staticfile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_staticfile_la_LINK) -rpath $(libdir) $(mod_staticfile_la_OBJECTS) $(mod_staticfile_la_LIBADD) $(LIBS)

mod_status.la: $(mod_status_la_OBJECTS) $(mod_status_la_DEPENDENCIES) $(EXTRA_mod_status_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_status_la_LINK) -rpath $(libdir) $(mod_status_la_OBJECTS) $(mod_status_la_LIBADD) $(LIBS)

mod_trigger_b4_dl.la: $(mod_trigger_b4_dl_la_OBJECTS) $(mod_trigger_b4_dl_la_DEPENDENCIES) $(EXTRA_mod_trigger_b4_dl_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_trigger_b4_dl_la_LINK) $(am_mod_trigger_b4_dl_la_rpath) $(mod_trigger_b4_dl_la_OBJECTS) $(mod_trigger_b4_dl_la_LIBADD) $(LIBS)

mod_uploadprogress.la: $(mod_uploadprogress_la_OBJECTS) $(mod_uploadprogress_la_DEPENDENCIES) $(EXTRA_mod_uploadprogress_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_uploadprogress_la_LINK) -rpath $(libdir) $(mod_uploadprogress_la_OBJECTS) $(mod_uploadprogress_la_LIBADD) $(LIBS)

mod_userdir.la: $(mod_userdir_la_OBJECTS) $(mod_userdir_la_DEPENDENCIES) $(EXTRA_mod_userdir_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_userdir_la_LINK) -rpath $(libdir) $(mod_userdir_la_OBJECTS) $(mod_userdir_la_LIBADD) $(LIBS)

mod_usertrack.la: $(mod_usertrack_la_OBJECTS) $(mod_usertrack_la_DEPENDENCIES) $(EXTRA_mod_usertrack_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_usertrack_la_LINK) -rpath $(libdir) $(mod_usertrack_la_OBJECTS) $(mod_usertrack_la_LIBADD) $(LIBS)

mod_vhostdb.la: $(mod_vhostdb_la_OBJECTS) $(mod_vhostdb_la_DEPENDENCIES) $(EXTRA_mod_vhostdb_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_vhostdb_la_LINK) -rpath $(libdir) $(mod_vhostdb_la_OBJECTS) $(mod_vhostdb_la_LIBADD) $(LIBS)

mod_vhostdb_dbi.la: $(mod_vhostdb_dbi_la_OBJECTS) $(mod_vhostdb_dbi_la_DEPENDENCIES) $(EXTRA_mod_vhostdb_dbi_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_vhostdb_dbi_la_LINK) $(am_mod_vhostdb_dbi_la_rpath) $(mod_vhostdb_dbi_la_OBJECTS) $(mod_vhostdb_dbi_la_LIBADD) $(LIBS)

mod_vhostdb_ldap.la: $(mod_vhostdb_ldap_la_OBJECTS) $(mod_vhostdb_ldap_la_DEPENDENCIES) $(EXTRA_mod_vhostdb_ldap_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_vhostdb_ldap_la_LINK) $(am_mod_vhostdb_ldap_la_rpath) $(mod_vhostdb_ldap_la_OBJECTS) $(mod_vhostdb_ldap_la_LIBADD) $(LIBS)

mod_vhostdb_mysql.la: $(mod_vhostdb_mysql_la_OBJECTS) $(mod_vhostdb_mysql_la_DEPENDENCIES) $(EXTRA_mod_vhostdb_mysql_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_vhostdb_mysql_la_LINK) $(am_mod_vhostdb_mysql_la_rpath) $(mod_vhostdb_mysql_la_OBJECTS) $(mod_vhostdb_mysql_la_LIBADD) $(LIBS)

mod_vhostdb_pgsql.la: $(mod_vhostdb_pgsql_la_OBJECTS) $(mod_vhostdb_pgsql_la_DEPENDENCIES) $(EXTRA_mod_vhostdb_pgsql_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_vhostdb_pgsql_la_LINK) $(am_mod_vhostdb_pgsql_la_rpath) $(mod_vhostdb_pgsql_la_OBJECTS) $(mod_vhostdb_pgsql_la_LIBADD) $(LIBS)

mod_webdav.la: $(mod_webdav_la_OBJECTS) $(mod_webdav_la_DEPENDENCIES) $(EXTRA_mod_webdav_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_webdav_la_LINK) -rpath $(libdir) $(mod_webdav_la_OBJECTS) $(mod_webdav_la_LIBADD) $(LIBS)

mod_wstunnel.la: $(mod_wstunnel_la_OBJECTS) $(mod_wstunnel_la_DEPENDENCIES) $(EXTRA_mod_wstunnel_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(mod_wstunnel_la_LINK) -rpath $(libdir) $(mod_wstunnel_la_OBJECTS) $(mod_wstunnel_la_LIBADD) $(LIBS)

lighttpd$(EXEEXT): $(lighttpd_OBJECTS) $(lighttpd_DEPENDENCIES) $(EXTRA_lighttpd_DEPENDENCIES) 
	@rm -f lighttpd$(EXEEXT)
	$(AM_V_CCLD)$(lighttpd_LINK) $(lighttpd_OBJECTS) $(lighttpd_LDADD) $(LIBS)

lighttpd-angel$(EXEEXT): $(lighttpd_angel_OBJECTS) $(lighttpd_angel_DEPENDENCIES) $(EXTRA_lighttpd_angel_DEPENDENCIES) 
	@rm -f lighttpd-angel$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(lighttpd_angel_OBJECTS) $(lighttpd_angel_LDADD) $(LIBS)
t/$(am__dirstamp):
	@$(MKDIR_P) t
	@: > t/$(am__dirstamp)
t/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) t/$(DEPDIR)
	@: > t/$(DEPDIR)/$(am__dirstamp)
t/test_array.$(OBJEXT): t/$(am__dirstamp) t/$(DEPDIR)/$(am__dirstamp)

t/test_array$(EXEEXT): $(t_test_array_OBJECTS) $(t_test_array_DEPENDENCIES) $(EXTRA_t_test_array_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_array$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_array_OBJECTS) $(t_test_array_LDADD) $(LIBS)
t/test_base64.$(OBJEXT): t/$(am__dirstamp) t/$(DEPDIR)/$(am__dirstamp)

t/test_base64$(EXEEXT): $(t_test_base64_OBJECTS) $(t_test_base64_DEPENDENCIES) $(EXTRA_t_test_base64_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_base64$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_base64_OBJECTS) $(t_test_base64_LDADD) $(LIBS)
t/test_buffer.$(OBJEXT): t/$(am__dirstamp) t/$(DEPDIR)/$(am__dirstamp)

t/test_buffer$(EXEEXT): $(t_test_buffer_OBJECTS) $(t_test_buffer_DEPENDENCIES) $(EXTRA_t_test_buffer_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_buffer$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_buffer_OBJECTS) $(t_test_buffer_LDADD) $(LIBS)
t/test_burl.$(OBJEXT): t/$(am__dirstamp) t/$(DEPDIR)/$(am__dirstamp)

t/test_burl$(EXEEXT): $(t_test_burl_OBJECTS) $(t_test_burl_DEPENDENCIES) $(EXTRA_t_test_burl_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_burl$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_burl_OBJECTS) $(t_test_burl_LDADD) $(LIBS)
t/test_configfile.$(OBJEXT): t/$(am__dirstamp) \
	t/$(DEPDIR)/$(am__dirstamp)

t/test_configfile$(EXEEXT): $(t_test_configfile_OBJECTS) $(t_test_configfile_DEPENDENCIES) $(EXTRA_t_test_configfile_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_configfile$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_configfile_OBJECTS) $(t_test_configfile_LDADD) $(LIBS)
t/test_keyvalue.$(OBJEXT): t/$(am__dirstamp) \
	t/$(DEPDIR)/$(am__dirstamp)

t/test_keyvalue$(EXEEXT): $(t_test_keyvalue_OBJECTS) $(t_test_keyvalue_DEPENDENCIES) $(EXTRA_t_test_keyvalue_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_keyvalue$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_keyvalue_OBJECTS) $(t_test_keyvalue_LDADD) $(LIBS)
t/test_mod_access.$(OBJEXT): t/$(am__dirstamp) \
	t/$(DEPDIR)/$(am__dirstamp)

t/test_mod_access$(EXEEXT): $(t_test_mod_access_OBJECTS) $(t_test_mod_access_DEPENDENCIES) $(EXTRA_t_test_mod_access_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_mod_access$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_mod_access_OBJECTS) $(t_test_mod_access_LDADD) $(LIBS)
t/test_mod_evhost.$(OBJEXT): t/$(am__dirstamp) \
	t/$(DEPDIR)/$(am__dirstamp)

t/test_mod_evhost$(EXEEXT): $(t_test_mod_evhost_OBJECTS) $(t_test_mod_evhost_DEPENDENCIES) $(EXTRA_t_test_mod_evhost_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_mod_evhost$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_mod_evhost_OBJECTS) $(t_test_mod_evhost_LDADD) $(LIBS)
t/test_mod_simple_vhost.$(OBJEXT): t/$(am__dirstamp) \
	t/$(DEPDIR)/$(am__dirstamp)

t/test_mod_simple_vhost$(EXEEXT): $(t_test_mod_simple_vhost_OBJECTS) $(t_test_mod_simple_vhost_DEPENDENCIES) $(EXTRA_t_test_mod_simple_vhost_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_mod_simple_vhost$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_mod_simple_vhost_OBJECTS) $(t_test_mod_simple_vhost_LDADD) $(LIBS)
t/test_request.$(OBJEXT): t/$(am__dirstamp) \
	t/$(DEPDIR)/$(am__dirstamp)

t/test_request$(EXEEXT): $(t_test_request_OBJECTS) $(t_test_request_DEPENDENCIES) $(EXTRA_t_test_request_DEPENDENCIES) t/$(am__dirstamp)
	@rm -f t/test_request$(EXEEXT)
	$(AM_V_CCLD)$(LINK) $(t_test_request_OBJECTS) $(t_test_request_LDADD) $(LIBS)

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

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

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base64.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/burl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configfile-glue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_array.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_config.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_integer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_string.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http_header.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/http_kv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-algo_sha1.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-array.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-base64.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-buffer.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-burl.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-chunk.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-configfile-glue.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-connections-glue.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-crc32.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-data_array.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-data_config.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-data_integer.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-data_string.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-etag.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_libev.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_poll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_select.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-gw_backend.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-http-header-glue.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-http_auth.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-http_chunk.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-http_header.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-http_kv.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-http_vhostdb.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-joblist.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-keyvalue.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-log.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-md5.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-plugin.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-rand.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-request.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-safe_memclear.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-sock_addr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-splaytree.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-stat_cache.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-stream.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/liblightcomp_la-vector.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-algo_sha1.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-angel.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-array.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-base64.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-buffer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-burl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-chunk.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-configfile-glue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-configfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-configparser.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-connections-glue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-connections.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-crc32.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-data_array.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-data_config.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-data_integer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-data_string.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-etag.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_freebsd_kqueue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_libev.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_linux_sysepoll.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_poll.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_select.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_solaris_devpoll.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-fdevent_solaris_port.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-gw_backend.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-http-header-glue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-http_auth.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-http_chunk.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-http_header.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-http_kv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-http_vhostdb.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-inet_ntop_cache.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-joblist.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-keyvalue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-log.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-md5.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_access.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_accesslog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_alias.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_auth.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_authn_file.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_authn_gssapi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_authn_ldap.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_authn_mysql.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_authn_pam.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_cgi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_cml.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_cml_funcs.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_cml_lua.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_compress.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_deflate.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_dirlisting.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_evasive.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_expire.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_extforward.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_fastcgi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_flv_streaming.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_geoip.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_indexfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_magnet.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_magnet_cache.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_mysql_vhost.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_openssl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_proxy.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_redirect.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_rewrite.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_rrdtool.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_scgi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_secdownload.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_setenv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_simple_vhost.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_ssi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_ssi_expr.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_ssi_exprparser.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_staticfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_status.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_trigger_b4_dl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_uploadprogress.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_userdir.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_usertrack.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_vhostdb.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_vhostdb_dbi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_vhostdb_ldap.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_vhostdb_mysql.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_vhostdb_pgsql.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-mod_webdav.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-network_write.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-plugin.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-rand.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-request.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-response.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-safe_memclear.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-server.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-sock_addr.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-splaytree.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-stat_cache.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-stream.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighttpd-vector.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_access.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_accesslog.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_alias.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_auth.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_authn_file.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_authn_gssapi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_authn_ldap.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_authn_pam.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_cgi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_cml_la-mod_cml.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_cml_la-mod_cml_funcs.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_cml_la-mod_cml_lua.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_compress.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_deflate.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_dirlisting.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_evasive.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_evhost.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_expire.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_extforward.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_fastcgi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_flv_streaming.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_geoip.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_indexfile.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_magnet_la-mod_magnet.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_magnet_la-mod_magnet_cache.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_openssl.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_proxy.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_redirect.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_rewrite.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_rrdtool.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_scgi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_secdownload.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_setenv.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_simple_vhost.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_sockproxy.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_ssi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_ssi_expr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_ssi_exprparser.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_staticfile.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_status.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_trigger_b4_dl.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_uploadprogress.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_userdir.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_usertrack.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_vhostdb.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_vhostdb_ldap.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_webdav_la-mod_webdav.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mod_wstunnel.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/request.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sock_addr.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_array.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_base64.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_buffer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_burl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_configfile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_keyvalue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_mod_access.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_mod_evhost.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_mod_simple_vhost.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@t/$(DEPDIR)/test_request.Po@am__quote@ # am--include-marker

$(am__depfiles_remade):
	@$(MKDIR_P) $(@D)
	@echo '# dummy' >$@-t && $(am__mv) $@-t $@

am--depfiles: $(am__depfiles_remade)

.c.o:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<

.c.obj:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.c.lo:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<

liblightcomp_la-base64.lo: base64.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-base64.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-base64.Tpo -c -o liblightcomp_la-base64.lo `test -f 'base64.c' || echo '$(srcdir)/'`base64.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-base64.Tpo $(DEPDIR)/liblightcomp_la-base64.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='base64.c' object='liblightcomp_la-base64.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-base64.lo `test -f 'base64.c' || echo '$(srcdir)/'`base64.c

liblightcomp_la-buffer.lo: buffer.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-buffer.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-buffer.Tpo -c -o liblightcomp_la-buffer.lo `test -f 'buffer.c' || echo '$(srcdir)/'`buffer.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-buffer.Tpo $(DEPDIR)/liblightcomp_la-buffer.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='buffer.c' object='liblightcomp_la-buffer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-buffer.lo `test -f 'buffer.c' || echo '$(srcdir)/'`buffer.c

liblightcomp_la-burl.lo: burl.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-burl.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-burl.Tpo -c -o liblightcomp_la-burl.lo `test -f 'burl.c' || echo '$(srcdir)/'`burl.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-burl.Tpo $(DEPDIR)/liblightcomp_la-burl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='burl.c' object='liblightcomp_la-burl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-burl.lo `test -f 'burl.c' || echo '$(srcdir)/'`burl.c

liblightcomp_la-log.lo: log.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-log.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-log.Tpo -c -o liblightcomp_la-log.lo `test -f 'log.c' || echo '$(srcdir)/'`log.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-log.Tpo $(DEPDIR)/liblightcomp_la-log.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='log.c' object='liblightcomp_la-log.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-log.lo `test -f 'log.c' || echo '$(srcdir)/'`log.c

liblightcomp_la-http_header.lo: http_header.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-http_header.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-http_header.Tpo -c -o liblightcomp_la-http_header.lo `test -f 'http_header.c' || echo '$(srcdir)/'`http_header.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-http_header.Tpo $(DEPDIR)/liblightcomp_la-http_header.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http_header.c' object='liblightcomp_la-http_header.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-http_header.lo `test -f 'http_header.c' || echo '$(srcdir)/'`http_header.c

liblightcomp_la-http_kv.lo: http_kv.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-http_kv.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-http_kv.Tpo -c -o liblightcomp_la-http_kv.lo `test -f 'http_kv.c' || echo '$(srcdir)/'`http_kv.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-http_kv.Tpo $(DEPDIR)/liblightcomp_la-http_kv.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http_kv.c' object='liblightcomp_la-http_kv.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-http_kv.lo `test -f 'http_kv.c' || echo '$(srcdir)/'`http_kv.c

liblightcomp_la-keyvalue.lo: keyvalue.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-keyvalue.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-keyvalue.Tpo -c -o liblightcomp_la-keyvalue.lo `test -f 'keyvalue.c' || echo '$(srcdir)/'`keyvalue.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-keyvalue.Tpo $(DEPDIR)/liblightcomp_la-keyvalue.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='keyvalue.c' object='liblightcomp_la-keyvalue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-keyvalue.lo `test -f 'keyvalue.c' || echo '$(srcdir)/'`keyvalue.c

liblightcomp_la-chunk.lo: chunk.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-chunk.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-chunk.Tpo -c -o liblightcomp_la-chunk.lo `test -f 'chunk.c' || echo '$(srcdir)/'`chunk.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-chunk.Tpo $(DEPDIR)/liblightcomp_la-chunk.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='chunk.c' object='liblightcomp_la-chunk.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-chunk.lo `test -f 'chunk.c' || echo '$(srcdir)/'`chunk.c

liblightcomp_la-http_chunk.lo: http_chunk.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-http_chunk.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-http_chunk.Tpo -c -o liblightcomp_la-http_chunk.lo `test -f 'http_chunk.c' || echo '$(srcdir)/'`http_chunk.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-http_chunk.Tpo $(DEPDIR)/liblightcomp_la-http_chunk.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http_chunk.c' object='liblightcomp_la-http_chunk.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-http_chunk.lo `test -f 'http_chunk.c' || echo '$(srcdir)/'`http_chunk.c

liblightcomp_la-stream.lo: stream.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-stream.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-stream.Tpo -c -o liblightcomp_la-stream.lo `test -f 'stream.c' || echo '$(srcdir)/'`stream.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-stream.Tpo $(DEPDIR)/liblightcomp_la-stream.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='stream.c' object='liblightcomp_la-stream.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-stream.lo `test -f 'stream.c' || echo '$(srcdir)/'`stream.c

liblightcomp_la-fdevent.lo: fdevent.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent.Tpo -c -o liblightcomp_la-fdevent.lo `test -f 'fdevent.c' || echo '$(srcdir)/'`fdevent.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent.Tpo $(DEPDIR)/liblightcomp_la-fdevent.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent.c' object='liblightcomp_la-fdevent.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent.lo `test -f 'fdevent.c' || echo '$(srcdir)/'`fdevent.c

liblightcomp_la-gw_backend.lo: gw_backend.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-gw_backend.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-gw_backend.Tpo -c -o liblightcomp_la-gw_backend.lo `test -f 'gw_backend.c' || echo '$(srcdir)/'`gw_backend.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-gw_backend.Tpo $(DEPDIR)/liblightcomp_la-gw_backend.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='gw_backend.c' object='liblightcomp_la-gw_backend.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-gw_backend.lo `test -f 'gw_backend.c' || echo '$(srcdir)/'`gw_backend.c

liblightcomp_la-stat_cache.lo: stat_cache.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-stat_cache.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-stat_cache.Tpo -c -o liblightcomp_la-stat_cache.lo `test -f 'stat_cache.c' || echo '$(srcdir)/'`stat_cache.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-stat_cache.Tpo $(DEPDIR)/liblightcomp_la-stat_cache.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='stat_cache.c' object='liblightcomp_la-stat_cache.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-stat_cache.lo `test -f 'stat_cache.c' || echo '$(srcdir)/'`stat_cache.c

liblightcomp_la-plugin.lo: plugin.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-plugin.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-plugin.Tpo -c -o liblightcomp_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-plugin.Tpo $(DEPDIR)/liblightcomp_la-plugin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='plugin.c' object='liblightcomp_la-plugin.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-plugin.lo `test -f 'plugin.c' || echo '$(srcdir)/'`plugin.c

liblightcomp_la-joblist.lo: joblist.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-joblist.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-joblist.Tpo -c -o liblightcomp_la-joblist.lo `test -f 'joblist.c' || echo '$(srcdir)/'`joblist.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-joblist.Tpo $(DEPDIR)/liblightcomp_la-joblist.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='joblist.c' object='liblightcomp_la-joblist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-joblist.lo `test -f 'joblist.c' || echo '$(srcdir)/'`joblist.c

liblightcomp_la-etag.lo: etag.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-etag.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-etag.Tpo -c -o liblightcomp_la-etag.lo `test -f 'etag.c' || echo '$(srcdir)/'`etag.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-etag.Tpo $(DEPDIR)/liblightcomp_la-etag.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='etag.c' object='liblightcomp_la-etag.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-etag.lo `test -f 'etag.c' || echo '$(srcdir)/'`etag.c

liblightcomp_la-array.lo: array.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-array.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-array.Tpo -c -o liblightcomp_la-array.lo `test -f 'array.c' || echo '$(srcdir)/'`array.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-array.Tpo $(DEPDIR)/liblightcomp_la-array.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='array.c' object='liblightcomp_la-array.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-array.lo `test -f 'array.c' || echo '$(srcdir)/'`array.c

liblightcomp_la-data_string.lo: data_string.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-data_string.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-data_string.Tpo -c -o liblightcomp_la-data_string.lo `test -f 'data_string.c' || echo '$(srcdir)/'`data_string.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-data_string.Tpo $(DEPDIR)/liblightcomp_la-data_string.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='data_string.c' object='liblightcomp_la-data_string.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-data_string.lo `test -f 'data_string.c' || echo '$(srcdir)/'`data_string.c

liblightcomp_la-data_array.lo: data_array.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-data_array.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-data_array.Tpo -c -o liblightcomp_la-data_array.lo `test -f 'data_array.c' || echo '$(srcdir)/'`data_array.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-data_array.Tpo $(DEPDIR)/liblightcomp_la-data_array.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='data_array.c' object='liblightcomp_la-data_array.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-data_array.lo `test -f 'data_array.c' || echo '$(srcdir)/'`data_array.c

liblightcomp_la-data_integer.lo: data_integer.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-data_integer.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-data_integer.Tpo -c -o liblightcomp_la-data_integer.lo `test -f 'data_integer.c' || echo '$(srcdir)/'`data_integer.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-data_integer.Tpo $(DEPDIR)/liblightcomp_la-data_integer.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='data_integer.c' object='liblightcomp_la-data_integer.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-data_integer.lo `test -f 'data_integer.c' || echo '$(srcdir)/'`data_integer.c

liblightcomp_la-algo_sha1.lo: algo_sha1.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-algo_sha1.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-algo_sha1.Tpo -c -o liblightcomp_la-algo_sha1.lo `test -f 'algo_sha1.c' || echo '$(srcdir)/'`algo_sha1.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-algo_sha1.Tpo $(DEPDIR)/liblightcomp_la-algo_sha1.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='algo_sha1.c' object='liblightcomp_la-algo_sha1.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-algo_sha1.lo `test -f 'algo_sha1.c' || echo '$(srcdir)/'`algo_sha1.c

liblightcomp_la-md5.lo: md5.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-md5.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-md5.Tpo -c -o liblightcomp_la-md5.lo `test -f 'md5.c' || echo '$(srcdir)/'`md5.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-md5.Tpo $(DEPDIR)/liblightcomp_la-md5.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='md5.c' object='liblightcomp_la-md5.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-md5.lo `test -f 'md5.c' || echo '$(srcdir)/'`md5.c

liblightcomp_la-vector.lo: vector.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-vector.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-vector.Tpo -c -o liblightcomp_la-vector.lo `test -f 'vector.c' || echo '$(srcdir)/'`vector.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-vector.Tpo $(DEPDIR)/liblightcomp_la-vector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='vector.c' object='liblightcomp_la-vector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-vector.lo `test -f 'vector.c' || echo '$(srcdir)/'`vector.c

liblightcomp_la-fdevent_select.lo: fdevent_select.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_select.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_select.Tpo -c -o liblightcomp_la-fdevent_select.lo `test -f 'fdevent_select.c' || echo '$(srcdir)/'`fdevent_select.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_select.Tpo $(DEPDIR)/liblightcomp_la-fdevent_select.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_select.c' object='liblightcomp_la-fdevent_select.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_select.lo `test -f 'fdevent_select.c' || echo '$(srcdir)/'`fdevent_select.c

liblightcomp_la-fdevent_libev.lo: fdevent_libev.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_libev.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_libev.Tpo -c -o liblightcomp_la-fdevent_libev.lo `test -f 'fdevent_libev.c' || echo '$(srcdir)/'`fdevent_libev.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_libev.Tpo $(DEPDIR)/liblightcomp_la-fdevent_libev.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_libev.c' object='liblightcomp_la-fdevent_libev.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_libev.lo `test -f 'fdevent_libev.c' || echo '$(srcdir)/'`fdevent_libev.c

liblightcomp_la-fdevent_poll.lo: fdevent_poll.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_poll.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_poll.Tpo -c -o liblightcomp_la-fdevent_poll.lo `test -f 'fdevent_poll.c' || echo '$(srcdir)/'`fdevent_poll.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_poll.Tpo $(DEPDIR)/liblightcomp_la-fdevent_poll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_poll.c' object='liblightcomp_la-fdevent_poll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_poll.lo `test -f 'fdevent_poll.c' || echo '$(srcdir)/'`fdevent_poll.c

liblightcomp_la-fdevent_linux_sysepoll.lo: fdevent_linux_sysepoll.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_linux_sysepoll.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Tpo -c -o liblightcomp_la-fdevent_linux_sysepoll.lo `test -f 'fdevent_linux_sysepoll.c' || echo '$(srcdir)/'`fdevent_linux_sysepoll.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Tpo $(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_linux_sysepoll.c' object='liblightcomp_la-fdevent_linux_sysepoll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_linux_sysepoll.lo `test -f 'fdevent_linux_sysepoll.c' || echo '$(srcdir)/'`fdevent_linux_sysepoll.c

liblightcomp_la-fdevent_solaris_devpoll.lo: fdevent_solaris_devpoll.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_solaris_devpoll.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Tpo -c -o liblightcomp_la-fdevent_solaris_devpoll.lo `test -f 'fdevent_solaris_devpoll.c' || echo '$(srcdir)/'`fdevent_solaris_devpoll.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Tpo $(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_solaris_devpoll.c' object='liblightcomp_la-fdevent_solaris_devpoll.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_solaris_devpoll.lo `test -f 'fdevent_solaris_devpoll.c' || echo '$(srcdir)/'`fdevent_solaris_devpoll.c

liblightcomp_la-fdevent_solaris_port.lo: fdevent_solaris_port.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_solaris_port.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Tpo -c -o liblightcomp_la-fdevent_solaris_port.lo `test -f 'fdevent_solaris_port.c' || echo '$(srcdir)/'`fdevent_solaris_port.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Tpo $(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_solaris_port.c' object='liblightcomp_la-fdevent_solaris_port.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_solaris_port.lo `test -f 'fdevent_solaris_port.c' || echo '$(srcdir)/'`fdevent_solaris_port.c

liblightcomp_la-fdevent_freebsd_kqueue.lo: fdevent_freebsd_kqueue.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-fdevent_freebsd_kqueue.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Tpo -c -o liblightcomp_la-fdevent_freebsd_kqueue.lo `test -f 'fdevent_freebsd_kqueue.c' || echo '$(srcdir)/'`fdevent_freebsd_kqueue.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Tpo $(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='fdevent_freebsd_kqueue.c' object='liblightcomp_la-fdevent_freebsd_kqueue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-fdevent_freebsd_kqueue.lo `test -f 'fdevent_freebsd_kqueue.c' || echo '$(srcdir)/'`fdevent_freebsd_kqueue.c

liblightcomp_la-data_config.lo: data_config.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-data_config.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-data_config.Tpo -c -o liblightcomp_la-data_config.lo `test -f 'data_config.c' || echo '$(srcdir)/'`data_config.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-data_config.Tpo $(DEPDIR)/liblightcomp_la-data_config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='data_config.c' object='liblightcomp_la-data_config.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-data_config.lo `test -f 'data_config.c' || echo '$(srcdir)/'`data_config.c

liblightcomp_la-crc32.lo: crc32.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-crc32.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-crc32.Tpo -c -o liblightcomp_la-crc32.lo `test -f 'crc32.c' || echo '$(srcdir)/'`crc32.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-crc32.Tpo $(DEPDIR)/liblightcomp_la-crc32.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='crc32.c' object='liblightcomp_la-crc32.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-crc32.lo `test -f 'crc32.c' || echo '$(srcdir)/'`crc32.c

liblightcomp_la-connections-glue.lo: connections-glue.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-connections-glue.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-connections-glue.Tpo -c -o liblightcomp_la-connections-glue.lo `test -f 'connections-glue.c' || echo '$(srcdir)/'`connections-glue.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-connections-glue.Tpo $(DEPDIR)/liblightcomp_la-connections-glue.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='connections-glue.c' object='liblightcomp_la-connections-glue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-connections-glue.lo `test -f 'connections-glue.c' || echo '$(srcdir)/'`connections-glue.c

liblightcomp_la-configfile-glue.lo: configfile-glue.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-configfile-glue.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-configfile-glue.Tpo -c -o liblightcomp_la-configfile-glue.lo `test -f 'configfile-glue.c' || echo '$(srcdir)/'`configfile-glue.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-configfile-glue.Tpo $(DEPDIR)/liblightcomp_la-configfile-glue.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='configfile-glue.c' object='liblightcomp_la-configfile-glue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-configfile-glue.lo `test -f 'configfile-glue.c' || echo '$(srcdir)/'`configfile-glue.c

liblightcomp_la-http-header-glue.lo: http-header-glue.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-http-header-glue.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-http-header-glue.Tpo -c -o liblightcomp_la-http-header-glue.lo `test -f 'http-header-glue.c' || echo '$(srcdir)/'`http-header-glue.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-http-header-glue.Tpo $(DEPDIR)/liblightcomp_la-http-header-glue.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http-header-glue.c' object='liblightcomp_la-http-header-glue.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-http-header-glue.lo `test -f 'http-header-glue.c' || echo '$(srcdir)/'`http-header-glue.c

liblightcomp_la-http_auth.lo: http_auth.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-http_auth.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-http_auth.Tpo -c -o liblightcomp_la-http_auth.lo `test -f 'http_auth.c' || echo '$(srcdir)/'`http_auth.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-http_auth.Tpo $(DEPDIR)/liblightcomp_la-http_auth.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http_auth.c' object='liblightcomp_la-http_auth.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-http_auth.lo `test -f 'http_auth.c' || echo '$(srcdir)/'`http_auth.c

liblightcomp_la-http_vhostdb.lo: http_vhostdb.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-http_vhostdb.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-http_vhostdb.Tpo -c -o liblightcomp_la-http_vhostdb.lo `test -f 'http_vhostdb.c' || echo '$(srcdir)/'`http_vhostdb.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-http_vhostdb.Tpo $(DEPDIR)/liblightcomp_la-http_vhostdb.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http_vhostdb.c' object='liblightcomp_la-http_vhostdb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-http_vhostdb.lo `test -f 'http_vhostdb.c' || echo '$(srcdir)/'`http_vhostdb.c

liblightcomp_la-rand.lo: rand.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-rand.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-rand.Tpo -c -o liblightcomp_la-rand.lo `test -f 'rand.c' || echo '$(srcdir)/'`rand.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-rand.Tpo $(DEPDIR)/liblightcomp_la-rand.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='rand.c' object='liblightcomp_la-rand.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-rand.lo `test -f 'rand.c' || echo '$(srcdir)/'`rand.c

liblightcomp_la-request.lo: request.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-request.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-request.Tpo -c -o liblightcomp_la-request.lo `test -f 'request.c' || echo '$(srcdir)/'`request.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-request.Tpo $(DEPDIR)/liblightcomp_la-request.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='request.c' object='liblightcomp_la-request.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-request.lo `test -f 'request.c' || echo '$(srcdir)/'`request.c

liblightcomp_la-sock_addr.lo: sock_addr.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-sock_addr.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-sock_addr.Tpo -c -o liblightcomp_la-sock_addr.lo `test -f 'sock_addr.c' || echo '$(srcdir)/'`sock_addr.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-sock_addr.Tpo $(DEPDIR)/liblightcomp_la-sock_addr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='sock_addr.c' object='liblightcomp_la-sock_addr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-sock_addr.lo `test -f 'sock_addr.c' || echo '$(srcdir)/'`sock_addr.c

liblightcomp_la-splaytree.lo: splaytree.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-splaytree.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-splaytree.Tpo -c -o liblightcomp_la-splaytree.lo `test -f 'splaytree.c' || echo '$(srcdir)/'`splaytree.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-splaytree.Tpo $(DEPDIR)/liblightcomp_la-splaytree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='splaytree.c' object='liblightcomp_la-splaytree.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-splaytree.lo `test -f 'splaytree.c' || echo '$(srcdir)/'`splaytree.c

liblightcomp_la-safe_memclear.lo: safe_memclear.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -MT liblightcomp_la-safe_memclear.lo -MD -MP -MF $(DEPDIR)/liblightcomp_la-safe_memclear.Tpo -c -o liblightcomp_la-safe_memclear.lo `test -f 'safe_memclear.c' || echo '$(srcdir)/'`safe_memclear.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/liblightcomp_la-safe_memclear.Tpo $(DEPDIR)/liblightcomp_la-safe_memclear.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='safe_memclear.c' object='liblightcomp_la-safe_memclear.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(liblightcomp_la_CFLAGS) $(CFLAGS) -c -o liblightcomp_la-safe_memclear.lo `test -f 'safe_memclear.c' || echo '$(srcdir)/'`safe_memclear.c

mod_authn_mysql_la-mod_authn_mysql.lo: mod_authn_mysql.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_authn_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mod_authn_mysql_la-mod_authn_mysql.lo -MD -MP -MF $(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Tpo -c -o mod_authn_mysql_la-mod_authn_mysql.lo `test -f 'mod_authn_mysql.c' || echo '$(srcdir)/'`mod_authn_mysql.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Tpo $(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_authn_mysql.c' object='mod_authn_mysql_la-mod_authn_mysql.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_authn_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mod_authn_mysql_la-mod_authn_mysql.lo `test -f 'mod_authn_mysql.c' || echo '$(srcdir)/'`mod_authn_mysql.c

mod_authn_sasl_la-mod_authn_sasl.lo: mod_authn_sasl.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_authn_sasl_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mod_authn_sasl_la-mod_authn_sasl.lo -MD -MP -MF $(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Tpo -c -o mod_authn_sasl_la-mod_authn_sasl.lo `test -f 'mod_authn_sasl.c' || echo '$(srcdir)/'`mod_authn_sasl.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Tpo $(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_authn_sasl.c' object='mod_authn_sasl_la-mod_authn_sasl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_authn_sasl_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mod_authn_sasl_la-mod_authn_sasl.lo `test -f 'mod_authn_sasl.c' || echo '$(srcdir)/'`mod_authn_sasl.c

mod_cml_la-mod_cml.lo: mod_cml.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_cml_la_CFLAGS) $(CFLAGS) -MT mod_cml_la-mod_cml.lo -MD -MP -MF $(DEPDIR)/mod_cml_la-mod_cml.Tpo -c -o mod_cml_la-mod_cml.lo `test -f 'mod_cml.c' || echo '$(srcdir)/'`mod_cml.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_cml_la-mod_cml.Tpo $(DEPDIR)/mod_cml_la-mod_cml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_cml.c' object='mod_cml_la-mod_cml.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_cml_la_CFLAGS) $(CFLAGS) -c -o mod_cml_la-mod_cml.lo `test -f 'mod_cml.c' || echo '$(srcdir)/'`mod_cml.c

mod_cml_la-mod_cml_lua.lo: mod_cml_lua.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_cml_la_CFLAGS) $(CFLAGS) -MT mod_cml_la-mod_cml_lua.lo -MD -MP -MF $(DEPDIR)/mod_cml_la-mod_cml_lua.Tpo -c -o mod_cml_la-mod_cml_lua.lo `test -f 'mod_cml_lua.c' || echo '$(srcdir)/'`mod_cml_lua.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_cml_la-mod_cml_lua.Tpo $(DEPDIR)/mod_cml_la-mod_cml_lua.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_cml_lua.c' object='mod_cml_la-mod_cml_lua.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_cml_la_CFLAGS) $(CFLAGS) -c -o mod_cml_la-mod_cml_lua.lo `test -f 'mod_cml_lua.c' || echo '$(srcdir)/'`mod_cml_lua.c

mod_cml_la-mod_cml_funcs.lo: mod_cml_funcs.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_cml_la_CFLAGS) $(CFLAGS) -MT mod_cml_la-mod_cml_funcs.lo -MD -MP -MF $(DEPDIR)/mod_cml_la-mod_cml_funcs.Tpo -c -o mod_cml_la-mod_cml_funcs.lo `test -f 'mod_cml_funcs.c' || echo '$(srcdir)/'`mod_cml_funcs.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_cml_la-mod_cml_funcs.Tpo $(DEPDIR)/mod_cml_la-mod_cml_funcs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_cml_funcs.c' object='mod_cml_la-mod_cml_funcs.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_cml_la_CFLAGS) $(CFLAGS) -c -o mod_cml_la-mod_cml_funcs.lo `test -f 'mod_cml_funcs.c' || echo '$(srcdir)/'`mod_cml_funcs.c

mod_magnet_la-mod_magnet.lo: mod_magnet.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_magnet_la_CFLAGS) $(CFLAGS) -MT mod_magnet_la-mod_magnet.lo -MD -MP -MF $(DEPDIR)/mod_magnet_la-mod_magnet.Tpo -c -o mod_magnet_la-mod_magnet.lo `test -f 'mod_magnet.c' || echo '$(srcdir)/'`mod_magnet.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_magnet_la-mod_magnet.Tpo $(DEPDIR)/mod_magnet_la-mod_magnet.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_magnet.c' object='mod_magnet_la-mod_magnet.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_magnet_la_CFLAGS) $(CFLAGS) -c -o mod_magnet_la-mod_magnet.lo `test -f 'mod_magnet.c' || echo '$(srcdir)/'`mod_magnet.c

mod_magnet_la-mod_magnet_cache.lo: mod_magnet_cache.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_magnet_la_CFLAGS) $(CFLAGS) -MT mod_magnet_la-mod_magnet_cache.lo -MD -MP -MF $(DEPDIR)/mod_magnet_la-mod_magnet_cache.Tpo -c -o mod_magnet_la-mod_magnet_cache.lo `test -f 'mod_magnet_cache.c' || echo '$(srcdir)/'`mod_magnet_cache.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_magnet_la-mod_magnet_cache.Tpo $(DEPDIR)/mod_magnet_la-mod_magnet_cache.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_magnet_cache.c' object='mod_magnet_la-mod_magnet_cache.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_magnet_la_CFLAGS) $(CFLAGS) -c -o mod_magnet_la-mod_magnet_cache.lo `test -f 'mod_magnet_cache.c' || echo '$(srcdir)/'`mod_magnet_cache.c

mod_mysql_vhost_la-mod_mysql_vhost.lo: mod_mysql_vhost.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_mysql_vhost_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mod_mysql_vhost_la-mod_mysql_vhost.lo -MD -MP -MF $(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Tpo -c -o mod_mysql_vhost_la-mod_mysql_vhost.lo `test -f 'mod_mysql_vhost.c' || echo '$(srcdir)/'`mod_mysql_vhost.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Tpo $(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_mysql_vhost.c' object='mod_mysql_vhost_la-mod_mysql_vhost.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_mysql_vhost_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mod_mysql_vhost_la-mod_mysql_vhost.lo `test -f 'mod_mysql_vhost.c' || echo '$(srcdir)/'`mod_mysql_vhost.c

mod_vhostdb_dbi_la-mod_vhostdb_dbi.lo: mod_vhostdb_dbi.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_vhostdb_dbi_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mod_vhostdb_dbi_la-mod_vhostdb_dbi.lo -MD -MP -MF $(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Tpo -c -o mod_vhostdb_dbi_la-mod_vhostdb_dbi.lo `test -f 'mod_vhostdb_dbi.c' || echo '$(srcdir)/'`mod_vhostdb_dbi.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Tpo $(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_vhostdb_dbi.c' object='mod_vhostdb_dbi_la-mod_vhostdb_dbi.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_vhostdb_dbi_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mod_vhostdb_dbi_la-mod_vhostdb_dbi.lo `test -f 'mod_vhostdb_dbi.c' || echo '$(srcdir)/'`mod_vhostdb_dbi.c

mod_vhostdb_mysql_la-mod_vhostdb_mysql.lo: mod_vhostdb_mysql.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_vhostdb_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mod_vhostdb_mysql_la-mod_vhostdb_mysql.lo -MD -MP -MF $(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Tpo -c -o mod_vhostdb_mysql_la-mod_vhostdb_mysql.lo `test -f 'mod_vhostdb_mysql.c' || echo '$(srcdir)/'`mod_vhostdb_mysql.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Tpo $(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_vhostdb_mysql.c' object='mod_vhostdb_mysql_la-mod_vhostdb_mysql.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_vhostdb_mysql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mod_vhostdb_mysql_la-mod_vhostdb_mysql.lo `test -f 'mod_vhostdb_mysql.c' || echo '$(srcdir)/'`mod_vhostdb_mysql.c

mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.lo: mod_vhostdb_pgsql.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_vhostdb_pgsql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.lo -MD -MP -MF $(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Tpo -c -o mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.lo `test -f 'mod_vhostdb_pgsql.c' || echo '$(srcdir)/'`mod_vhostdb_pgsql.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Tpo $(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_vhostdb_pgsql.c' object='mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mod_vhostdb_pgsql_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.lo `test -f 'mod_vhostdb_pgsql.c' || echo '$(srcdir)/'`mod_vhostdb_pgsql.c

mod_webdav_la-mod_webdav.lo: mod_webdav.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_webdav_la_CFLAGS) $(CFLAGS) -MT mod_webdav_la-mod_webdav.lo -MD -MP -MF $(DEPDIR)/mod_webdav_la-mod_webdav.Tpo -c -o mod_webdav_la-mod_webdav.lo `test -f 'mod_webdav.c' || echo '$(srcdir)/'`mod_webdav.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/mod_webdav_la-mod_webdav.Tpo $(DEPDIR)/mod_webdav_la-mod_webdav.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='mod_webdav.c' object='mod_webdav_la-mod_webdav.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(mod_webdav_la_CFLAGS) $(CFLAGS) -c -o mod_webdav_la-mod_webdav.lo `test -f 'mod_webdav.c' || echo '$(srcdir)/'`mod_webdav.c

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

lighttpd-http-header-glue.o: http-header-glue.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lighttpd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lighttpd-http-header-glue.o -MD -MP -MF $(DEPDIR)/lighttpd-http-header-glue.Tpo -c -o lighttpd-http-header-glue.o `test -f 'http-header-glue.c' || echo '$(srcdir)/'`http-header-glue.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/lighttpd-http-header-glue.Tpo $(DEPDIR)/lighttpd-http-header-glue.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='http-header-glue.c' object='lighttpd-http-header-glue.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(lighttpd_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lighttpd-http-header-glue.o `test -f 'http-header-glue.c' || echo '$(srcdir)/'`http-header-glue.c

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
	-rm -rf t/.libs t/_libs

ID: $(am__tagged_files)
	$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags

tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	set x; \
	here=`pwd`; \
	$(am__define_uniq_tagged_files); \
	shift; \
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  if test $$# -gt 0; then \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      "$$@" $$unique; \
	  else \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      $$unique; \
	  fi; \
	fi
ctags: ctags-am

CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	$(am__define_uniq_tagged_files); \
	test -z "$(CTAGS_ARGS)$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$unique

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

cscopelist-am: $(am__tagged_files)
	list='$(am__tagged_files)'; \
	case "$(srcdir)" in \
	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
	  *) sdir=$(subdir)/$(srcdir) ;; \
	esac; \
	for i in $$list; do \
	  if test -f "$$i"; then \
	    echo "$(subdir)/$$i"; \
	  else \
	    echo "$$sdir/$$i"; \
	  fi; \
	done >> $(top_builddir)/cscope.files

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

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

distdir: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) distdir-am

distdir-am: $(DISTFILES)
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
check-am: all-am
	$(MAKE) $(AM_MAKEFLAGS) check-TESTS
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(HEADERS)
installdirs:
	for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(libdir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am

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

installcheck: installcheck-am
install-strip:
	if test -z '$(STRIP)'; then \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	      install; \
	else \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
	fi
mostlyclean-generic:

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

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
	-rm -f t/$(DEPDIR)/$(am__dirstamp)
	-rm -f t/$(am__dirstamp)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-am

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

distclean: distclean-am
		-rm -f ./$(DEPDIR)/array.Po
	-rm -f ./$(DEPDIR)/base64.Po
	-rm -f ./$(DEPDIR)/buffer.Po
	-rm -f ./$(DEPDIR)/burl.Po
	-rm -f ./$(DEPDIR)/configfile-glue.Po
	-rm -f ./$(DEPDIR)/data_array.Po
	-rm -f ./$(DEPDIR)/data_config.Po
	-rm -f ./$(DEPDIR)/data_integer.Po
	-rm -f ./$(DEPDIR)/data_string.Po
	-rm -f ./$(DEPDIR)/http_header.Po
	-rm -f ./$(DEPDIR)/http_kv.Po
	-rm -f ./$(DEPDIR)/liblightcomp_la-algo_sha1.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-array.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-base64.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-buffer.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-burl.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-chunk.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-configfile-glue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-connections-glue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-crc32.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_array.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_config.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_integer.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_string.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-etag.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_libev.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_poll.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_select.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-gw_backend.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http-header-glue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_auth.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_chunk.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_header.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_kv.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_vhostdb.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-joblist.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-keyvalue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-log.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-md5.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-plugin.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-rand.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-request.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-safe_memclear.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-sock_addr.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-splaytree.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-stat_cache.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-stream.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-vector.Plo
	-rm -f ./$(DEPDIR)/lighttpd-algo_sha1.Po
	-rm -f ./$(DEPDIR)/lighttpd-angel.Po
	-rm -f ./$(DEPDIR)/lighttpd-array.Po
	-rm -f ./$(DEPDIR)/lighttpd-base64.Po
	-rm -f ./$(DEPDIR)/lighttpd-buffer.Po
	-rm -f ./$(DEPDIR)/lighttpd-burl.Po
	-rm -f ./$(DEPDIR)/lighttpd-chunk.Po
	-rm -f ./$(DEPDIR)/lighttpd-configfile-glue.Po
	-rm -f ./$(DEPDIR)/lighttpd-configfile.Po
	-rm -f ./$(DEPDIR)/lighttpd-configparser.Po
	-rm -f ./$(DEPDIR)/lighttpd-connections-glue.Po
	-rm -f ./$(DEPDIR)/lighttpd-connections.Po
	-rm -f ./$(DEPDIR)/lighttpd-crc32.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_array.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_config.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_integer.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_string.Po
	-rm -f ./$(DEPDIR)/lighttpd-etag.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_freebsd_kqueue.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_libev.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_linux_sysepoll.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_poll.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_select.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_solaris_devpoll.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_solaris_port.Po
	-rm -f ./$(DEPDIR)/lighttpd-gw_backend.Po
	-rm -f ./$(DEPDIR)/lighttpd-http-header-glue.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_auth.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_chunk.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_header.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_kv.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_vhostdb.Po
	-rm -f ./$(DEPDIR)/lighttpd-inet_ntop_cache.Po
	-rm -f ./$(DEPDIR)/lighttpd-joblist.Po
	-rm -f ./$(DEPDIR)/lighttpd-keyvalue.Po
	-rm -f ./$(DEPDIR)/lighttpd-log.Po
	-rm -f ./$(DEPDIR)/lighttpd-md5.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_access.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_accesslog.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_alias.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_auth.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_file.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_gssapi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_ldap.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_mysql.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_pam.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cgi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cml.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cml_funcs.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cml_lua.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_compress.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_deflate.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_dirlisting.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_evasive.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_expire.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_extforward.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_fastcgi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_flv_streaming.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_geoip.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_indexfile.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_magnet.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_magnet_cache.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_mysql_vhost.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_openssl.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_proxy.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_redirect.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_rewrite.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_rrdtool.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_scgi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_secdownload.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_setenv.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_simple_vhost.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_ssi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_ssi_expr.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_ssi_exprparser.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_staticfile.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_status.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_trigger_b4_dl.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_uploadprogress.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_userdir.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_usertrack.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_dbi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_ldap.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_mysql.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_pgsql.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_webdav.Po
	-rm -f ./$(DEPDIR)/lighttpd-network.Po
	-rm -f ./$(DEPDIR)/lighttpd-network_write.Po
	-rm -f ./$(DEPDIR)/lighttpd-plugin.Po
	-rm -f ./$(DEPDIR)/lighttpd-rand.Po
	-rm -f ./$(DEPDIR)/lighttpd-request.Po
	-rm -f ./$(DEPDIR)/lighttpd-response.Po
	-rm -f ./$(DEPDIR)/lighttpd-safe_memclear.Po
	-rm -f ./$(DEPDIR)/lighttpd-server.Po
	-rm -f ./$(DEPDIR)/lighttpd-sock_addr.Po
	-rm -f ./$(DEPDIR)/lighttpd-splaytree.Po
	-rm -f ./$(DEPDIR)/lighttpd-stat_cache.Po
	-rm -f ./$(DEPDIR)/lighttpd-stream.Po
	-rm -f ./$(DEPDIR)/lighttpd-vector.Po
	-rm -f ./$(DEPDIR)/log.Po
	-rm -f ./$(DEPDIR)/mod_access.Plo
	-rm -f ./$(DEPDIR)/mod_accesslog.Plo
	-rm -f ./$(DEPDIR)/mod_alias.Plo
	-rm -f ./$(DEPDIR)/mod_auth.Plo
	-rm -f ./$(DEPDIR)/mod_authn_file.Plo
	-rm -f ./$(DEPDIR)/mod_authn_gssapi.Plo
	-rm -f ./$(DEPDIR)/mod_authn_ldap.Plo
	-rm -f ./$(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Plo
	-rm -f ./$(DEPDIR)/mod_authn_pam.Plo
	-rm -f ./$(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Plo
	-rm -f ./$(DEPDIR)/mod_cgi.Plo
	-rm -f ./$(DEPDIR)/mod_cml_la-mod_cml.Plo
	-rm -f ./$(DEPDIR)/mod_cml_la-mod_cml_funcs.Plo
	-rm -f ./$(DEPDIR)/mod_cml_la-mod_cml_lua.Plo
	-rm -f ./$(DEPDIR)/mod_compress.Plo
	-rm -f ./$(DEPDIR)/mod_deflate.Plo
	-rm -f ./$(DEPDIR)/mod_dirlisting.Plo
	-rm -f ./$(DEPDIR)/mod_evasive.Plo
	-rm -f ./$(DEPDIR)/mod_evhost.Plo
	-rm -f ./$(DEPDIR)/mod_expire.Plo
	-rm -f ./$(DEPDIR)/mod_extforward.Plo
	-rm -f ./$(DEPDIR)/mod_fastcgi.Plo
	-rm -f ./$(DEPDIR)/mod_flv_streaming.Plo
	-rm -f ./$(DEPDIR)/mod_geoip.Plo
	-rm -f ./$(DEPDIR)/mod_indexfile.Plo
	-rm -f ./$(DEPDIR)/mod_magnet_la-mod_magnet.Plo
	-rm -f ./$(DEPDIR)/mod_magnet_la-mod_magnet_cache.Plo
	-rm -f ./$(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Plo
	-rm -f ./$(DEPDIR)/mod_openssl.Plo
	-rm -f ./$(DEPDIR)/mod_proxy.Plo
	-rm -f ./$(DEPDIR)/mod_redirect.Plo
	-rm -f ./$(DEPDIR)/mod_rewrite.Plo
	-rm -f ./$(DEPDIR)/mod_rrdtool.Plo
	-rm -f ./$(DEPDIR)/mod_scgi.Plo
	-rm -f ./$(DEPDIR)/mod_secdownload.Plo
	-rm -f ./$(DEPDIR)/mod_setenv.Plo
	-rm -f ./$(DEPDIR)/mod_simple_vhost.Plo
	-rm -f ./$(DEPDIR)/mod_sockproxy.Plo
	-rm -f ./$(DEPDIR)/mod_ssi.Plo
	-rm -f ./$(DEPDIR)/mod_ssi_expr.Plo
	-rm -f ./$(DEPDIR)/mod_ssi_exprparser.Plo
	-rm -f ./$(DEPDIR)/mod_staticfile.Plo
	-rm -f ./$(DEPDIR)/mod_status.Plo
	-rm -f ./$(DEPDIR)/mod_trigger_b4_dl.Plo
	-rm -f ./$(DEPDIR)/mod_uploadprogress.Plo
	-rm -f ./$(DEPDIR)/mod_userdir.Plo
	-rm -f ./$(DEPDIR)/mod_usertrack.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_ldap.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Plo
	-rm -f ./$(DEPDIR)/mod_webdav_la-mod_webdav.Plo
	-rm -f ./$(DEPDIR)/mod_wstunnel.Plo
	-rm -f ./$(DEPDIR)/request.Po
	-rm -f ./$(DEPDIR)/sock_addr.Po
	-rm -f ./$(DEPDIR)/vector.Po
	-rm -f t/$(DEPDIR)/test_array.Po
	-rm -f t/$(DEPDIR)/test_base64.Po
	-rm -f t/$(DEPDIR)/test_buffer.Po
	-rm -f t/$(DEPDIR)/test_burl.Po
	-rm -f t/$(DEPDIR)/test_configfile.Po
	-rm -f t/$(DEPDIR)/test_keyvalue.Po
	-rm -f t/$(DEPDIR)/test_mod_access.Po
	-rm -f t/$(DEPDIR)/test_mod_evhost.Po
	-rm -f t/$(DEPDIR)/test_mod_simple_vhost.Po
	-rm -f t/$(DEPDIR)/test_request.Po
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am:

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am: install-libLTLIBRARIES install-sbinPROGRAMS

install-html: install-html-am

install-html-am:

install-info: install-info-am

install-info-am:

install-man:

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
		-rm -f ./$(DEPDIR)/array.Po
	-rm -f ./$(DEPDIR)/base64.Po
	-rm -f ./$(DEPDIR)/buffer.Po
	-rm -f ./$(DEPDIR)/burl.Po
	-rm -f ./$(DEPDIR)/configfile-glue.Po
	-rm -f ./$(DEPDIR)/data_array.Po
	-rm -f ./$(DEPDIR)/data_config.Po
	-rm -f ./$(DEPDIR)/data_integer.Po
	-rm -f ./$(DEPDIR)/data_string.Po
	-rm -f ./$(DEPDIR)/http_header.Po
	-rm -f ./$(DEPDIR)/http_kv.Po
	-rm -f ./$(DEPDIR)/liblightcomp_la-algo_sha1.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-array.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-base64.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-buffer.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-burl.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-chunk.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-configfile-glue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-connections-glue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-crc32.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_array.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_config.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_integer.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-data_string.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-etag.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_freebsd_kqueue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_libev.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_linux_sysepoll.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_poll.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_select.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_solaris_devpoll.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-fdevent_solaris_port.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-gw_backend.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http-header-glue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_auth.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_chunk.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_header.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_kv.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-http_vhostdb.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-joblist.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-keyvalue.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-log.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-md5.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-plugin.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-rand.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-request.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-safe_memclear.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-sock_addr.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-splaytree.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-stat_cache.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-stream.Plo
	-rm -f ./$(DEPDIR)/liblightcomp_la-vector.Plo
	-rm -f ./$(DEPDIR)/lighttpd-algo_sha1.Po
	-rm -f ./$(DEPDIR)/lighttpd-angel.Po
	-rm -f ./$(DEPDIR)/lighttpd-array.Po
	-rm -f ./$(DEPDIR)/lighttpd-base64.Po
	-rm -f ./$(DEPDIR)/lighttpd-buffer.Po
	-rm -f ./$(DEPDIR)/lighttpd-burl.Po
	-rm -f ./$(DEPDIR)/lighttpd-chunk.Po
	-rm -f ./$(DEPDIR)/lighttpd-configfile-glue.Po
	-rm -f ./$(DEPDIR)/lighttpd-configfile.Po
	-rm -f ./$(DEPDIR)/lighttpd-configparser.Po
	-rm -f ./$(DEPDIR)/lighttpd-connections-glue.Po
	-rm -f ./$(DEPDIR)/lighttpd-connections.Po
	-rm -f ./$(DEPDIR)/lighttpd-crc32.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_array.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_config.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_integer.Po
	-rm -f ./$(DEPDIR)/lighttpd-data_string.Po
	-rm -f ./$(DEPDIR)/lighttpd-etag.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_freebsd_kqueue.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_libev.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_linux_sysepoll.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_poll.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_select.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_solaris_devpoll.Po
	-rm -f ./$(DEPDIR)/lighttpd-fdevent_solaris_port.Po
	-rm -f ./$(DEPDIR)/lighttpd-gw_backend.Po
	-rm -f ./$(DEPDIR)/lighttpd-http-header-glue.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_auth.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_chunk.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_header.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_kv.Po
	-rm -f ./$(DEPDIR)/lighttpd-http_vhostdb.Po
	-rm -f ./$(DEPDIR)/lighttpd-inet_ntop_cache.Po
	-rm -f ./$(DEPDIR)/lighttpd-joblist.Po
	-rm -f ./$(DEPDIR)/lighttpd-keyvalue.Po
	-rm -f ./$(DEPDIR)/lighttpd-log.Po
	-rm -f ./$(DEPDIR)/lighttpd-md5.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_access.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_accesslog.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_alias.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_auth.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_file.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_gssapi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_ldap.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_mysql.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_authn_pam.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cgi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cml.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cml_funcs.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_cml_lua.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_compress.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_deflate.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_dirlisting.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_evasive.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_expire.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_extforward.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_fastcgi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_flv_streaming.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_geoip.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_indexfile.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_magnet.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_magnet_cache.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_mysql_vhost.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_openssl.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_proxy.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_redirect.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_rewrite.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_rrdtool.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_scgi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_secdownload.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_setenv.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_simple_vhost.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_ssi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_ssi_expr.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_ssi_exprparser.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_staticfile.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_status.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_trigger_b4_dl.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_uploadprogress.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_userdir.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_usertrack.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_dbi.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_ldap.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_mysql.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_vhostdb_pgsql.Po
	-rm -f ./$(DEPDIR)/lighttpd-mod_webdav.Po
	-rm -f ./$(DEPDIR)/lighttpd-network.Po
	-rm -f ./$(DEPDIR)/lighttpd-network_write.Po
	-rm -f ./$(DEPDIR)/lighttpd-plugin.Po
	-rm -f ./$(DEPDIR)/lighttpd-rand.Po
	-rm -f ./$(DEPDIR)/lighttpd-request.Po
	-rm -f ./$(DEPDIR)/lighttpd-response.Po
	-rm -f ./$(DEPDIR)/lighttpd-safe_memclear.Po
	-rm -f ./$(DEPDIR)/lighttpd-server.Po
	-rm -f ./$(DEPDIR)/lighttpd-sock_addr.Po
	-rm -f ./$(DEPDIR)/lighttpd-splaytree.Po
	-rm -f ./$(DEPDIR)/lighttpd-stat_cache.Po
	-rm -f ./$(DEPDIR)/lighttpd-stream.Po
	-rm -f ./$(DEPDIR)/lighttpd-vector.Po
	-rm -f ./$(DEPDIR)/log.Po
	-rm -f ./$(DEPDIR)/mod_access.Plo
	-rm -f ./$(DEPDIR)/mod_accesslog.Plo
	-rm -f ./$(DEPDIR)/mod_alias.Plo
	-rm -f ./$(DEPDIR)/mod_auth.Plo
	-rm -f ./$(DEPDIR)/mod_authn_file.Plo
	-rm -f ./$(DEPDIR)/mod_authn_gssapi.Plo
	-rm -f ./$(DEPDIR)/mod_authn_ldap.Plo
	-rm -f ./$(DEPDIR)/mod_authn_mysql_la-mod_authn_mysql.Plo
	-rm -f ./$(DEPDIR)/mod_authn_pam.Plo
	-rm -f ./$(DEPDIR)/mod_authn_sasl_la-mod_authn_sasl.Plo
	-rm -f ./$(DEPDIR)/mod_cgi.Plo
	-rm -f ./$(DEPDIR)/mod_cml_la-mod_cml.Plo
	-rm -f ./$(DEPDIR)/mod_cml_la-mod_cml_funcs.Plo
	-rm -f ./$(DEPDIR)/mod_cml_la-mod_cml_lua.Plo
	-rm -f ./$(DEPDIR)/mod_compress.Plo
	-rm -f ./$(DEPDIR)/mod_deflate.Plo
	-rm -f ./$(DEPDIR)/mod_dirlisting.Plo
	-rm -f ./$(DEPDIR)/mod_evasive.Plo
	-rm -f ./$(DEPDIR)/mod_evhost.Plo
	-rm -f ./$(DEPDIR)/mod_expire.Plo
	-rm -f ./$(DEPDIR)/mod_extforward.Plo
	-rm -f ./$(DEPDIR)/mod_fastcgi.Plo
	-rm -f ./$(DEPDIR)/mod_flv_streaming.Plo
	-rm -f ./$(DEPDIR)/mod_geoip.Plo
	-rm -f ./$(DEPDIR)/mod_indexfile.Plo
	-rm -f ./$(DEPDIR)/mod_magnet_la-mod_magnet.Plo
	-rm -f ./$(DEPDIR)/mod_magnet_la-mod_magnet_cache.Plo
	-rm -f ./$(DEPDIR)/mod_mysql_vhost_la-mod_mysql_vhost.Plo
	-rm -f ./$(DEPDIR)/mod_openssl.Plo
	-rm -f ./$(DEPDIR)/mod_proxy.Plo
	-rm -f ./$(DEPDIR)/mod_redirect.Plo
	-rm -f ./$(DEPDIR)/mod_rewrite.Plo
	-rm -f ./$(DEPDIR)/mod_rrdtool.Plo
	-rm -f ./$(DEPDIR)/mod_scgi.Plo
	-rm -f ./$(DEPDIR)/mod_secdownload.Plo
	-rm -f ./$(DEPDIR)/mod_setenv.Plo
	-rm -f ./$(DEPDIR)/mod_simple_vhost.Plo
	-rm -f ./$(DEPDIR)/mod_sockproxy.Plo
	-rm -f ./$(DEPDIR)/mod_ssi.Plo
	-rm -f ./$(DEPDIR)/mod_ssi_expr.Plo
	-rm -f ./$(DEPDIR)/mod_ssi_exprparser.Plo
	-rm -f ./$(DEPDIR)/mod_staticfile.Plo
	-rm -f ./$(DEPDIR)/mod_status.Plo
	-rm -f ./$(DEPDIR)/mod_trigger_b4_dl.Plo
	-rm -f ./$(DEPDIR)/mod_uploadprogress.Plo
	-rm -f ./$(DEPDIR)/mod_userdir.Plo
	-rm -f ./$(DEPDIR)/mod_usertrack.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_dbi_la-mod_vhostdb_dbi.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_ldap.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_mysql_la-mod_vhostdb_mysql.Plo
	-rm -f ./$(DEPDIR)/mod_vhostdb_pgsql_la-mod_vhostdb_pgsql.Plo
	-rm -f ./$(DEPDIR)/mod_webdav_la-mod_webdav.Plo
	-rm -f ./$(DEPDIR)/mod_wstunnel.Plo
	-rm -f ./$(DEPDIR)/request.Po
	-rm -f ./$(DEPDIR)/sock_addr.Po
	-rm -f ./$(DEPDIR)/vector.Po
	-rm -f t/$(DEPDIR)/test_array.Po
	-rm -f t/$(DEPDIR)/test_base64.Po
	-rm -f t/$(DEPDIR)/test_buffer.Po
	-rm -f t/$(DEPDIR)/test_burl.Po
	-rm -f t/$(DEPDIR)/test_configfile.Po
	-rm -f t/$(DEPDIR)/test_keyvalue.Po
	-rm -f t/$(DEPDIR)/test_mod_access.Po
	-rm -f t/$(DEPDIR)/test_mod_evhost.Po
	-rm -f t/$(DEPDIR)/test_mod_simple_vhost.Po
	-rm -f t/$(DEPDIR)/test_request.Po
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-am

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

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am: uninstall-libLTLIBRARIES uninstall-sbinPROGRAMS

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

.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
	check-am clean clean-generic clean-libLTLIBRARIES \
	clean-libtool clean-noinstPROGRAMS clean-sbinPROGRAMS \
	cscopelist-am ctags ctags-am distclean distclean-compile \
	distclean-generic distclean-libtool distclean-tags distdir dvi \
	dvi-am html html-am info info-am install install-am \
	install-data install-data-am install-dvi install-dvi-am \
	install-exec install-exec-am install-html install-html-am \
	install-info install-info-am install-libLTLIBRARIES \
	install-man install-pdf install-pdf-am install-ps \
	install-ps-am install-sbinPROGRAMS install-strip installcheck \
	installcheck-am installdirs maintainer-clean \
	maintainer-clean-generic mostlyclean mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
	tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES \
	uninstall-sbinPROGRAMS

.PRECIOUS: Makefile


lemon$(BUILD_EXEEXT): lemon.c
	$(AM_V_CC)$(CC_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ $(srcdir)/lemon.c

.PHONY: versionstamp parsers

versionstamp:
	@test -f versionstamp.h || touch versionstamp.h; \
	REVISION=""; \
	if test -d "$(top_srcdir)/.svn" -a -x "`which svnversion`"; then \
		REVISION="$$(LANG= LC_ALL=C svnversion "$(top_srcdir)" 2>/dev/null || echo exported)"; \
		if test "$$REVISION" = "exported"; then \
			REVISION=""; \
		fi; \
	fi; \
	if test -z "$$REVISION" -a -d "$(top_srcdir)/.git" -a -x "`which git`"; then \
		REVISION="$$(cd "$(top_srcdir)"; LANG= LC_ALL=C git describe --always 2>/dev/null || echo)"; \
	fi; \
	if test -n "$$REVISION"; then \
		echo "#define REPO_VERSION \"-devel-$$REVISION\"" > versionstamp.h.tmp; \
	else \
		echo "#define REPO_VERSION \"\"" > versionstamp.h.tmp; \
	fi; \
	if ! diff versionstamp.h.tmp versionstamp.h >/dev/null 2>/dev/null; then \
		mv versionstamp.h.tmp versionstamp.h; \
	else \
		rm versionstamp.h.tmp; \
	fi

configparser.h: configparser.c
configparser.c: $(srcdir)/configparser.y $(srcdir)/lempar.c lemon$(BUILD_EXEEXT)
	rm -f configparser.h
	$(LEMON) -q $(srcdir)/configparser.y $(srcdir)/lempar.c

mod_ssi_exprparser.h: mod_ssi_exprparser.c
mod_ssi_exprparser.c: $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c lemon$(BUILD_EXEEXT)
	rm -f mod_ssi_exprparser.h
	$(LEMON) -q $(srcdir)/mod_ssi_exprparser.y $(srcdir)/lempar.c

parsers: configparser.c mod_ssi_exprparser.c

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