aboutsummaryrefslogtreecommitdiff
path: root/.gitignore
blob: ae5a523404c4958964867b467e16961a65a2b06f (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
# global patterns

# commonly used editors
# vim
*.swp

# generated files etc
config.cache
config.status
config.log
*.d
*.depend
*.ncb
*.pc
*.P
*.suo
*.vcproj.*.user
*.mode1v3
*.pbxuser
*.[oa]
*.l[oa]
*.so
*.so.*
*.dylib
*.lineno
*.py[co]
*.ver
*.rej

.libs/
.deps/

# /
/.dummy
/.dummy.in
/Makefile
/Makefile.include
/aclocal.m4
/autom4te.cache/
/build-aux/config.guess
/build-aux/config.sub
/build-aux/install-sh
/build-aux/missing
/autotools
/BUILD
/xbmc.log
/xbmc.old.log
/Makefile.depend
/config.status
/config.h
/config.h.in
/config.h.in~
/configure
/stamp-h1
/xbmc.bin
/xbmc-xrandr
/svn_revision.h

# /addons/
/addons/packages
/addons/screensaver.rsxs.euphoria/Euphoria.xbs
/addons/screensaver.rsxs.plasma/Plasma.xbs
/addons/screensaver.rsxs.solarwinds/Solarwinds.xbs
/addons/skin.confluence/media/Textures.xbt
/addons/skin.pm3-hd/media/Textures.xbt
/addons/visualization.glspectrum/opengl_spectrum.vis
/addons/visualization.projectm/projectM.vis
/addons/visualization.projectm/*.milk
/addons/visualization.projectm/*.tga
/addons/visualization.projectm/*.prjm
/addons/visualization.waveform/Waveform.vis

# /guilib/
/guilib/Makefile
/guilib/*.obj
/guilib/*.idb
/guilib/*.pdb
/guilib/*.bak
/guilib/Debug (Win32)
/guilib/Release (Win32)
/guilib/Release
/guilib/Release_LTCG
/guilib/Debug
/guilib/Profile
/guilib/Profile_FastCap

# /guilib/common/
/guilib/common/Makefile

# /guilib/tinyXML/

# /screensavers/
/screensavers/Solarwinds.xbs
/screensavers/Euphoria.xbs
/screensavers/Plasma.xbs

# /skin/Confluence/
/skin/Confluence/BUILD

# /skin/PM3.HD/
/skin/PM3.HD/BUILD

# /skin/PM3.HD/media/
/skin/PM3.HD/media/*.db

# /skin/PM3.HD/media/Apple Movie Trailers/
/skin/PM3.HD/media/Apple Movie Trailers/*.db

# /skin/PM3.HD/media/busy/
/skin/PM3.HD/media/busy/*.db

# /skin/PM3.HD/media/flagging/aspectratio/
/skin/PM3.HD/media/flagging/aspectratio/Thumbs.db

# /skin/PM3.HD/media/flagging/audio/
/skin/PM3.HD/media/flagging/audio/Thumbs.db

# /skin/PM3.HD/media/flagging/video/
/skin/PM3.HD/media/flagging/video/Thumbs.db

# /system/
/system/profiles.xml
/system/libid3tag.dll
/system/players/paplayer/wavpack.dll
/system/players/paplayer/libmodplug.dll
/system/players/paplayer/StSoundLibrary.dll
/system/players/paplayer/vorbisfile.dll
/system/players/paplayer/vgmstream.dll
/system/players/paplayer/NoseFart.dll
/system/players/paplayer/AC3Codec.dll
/system/players/paplayer/libsidplay2.dll
/system/players/paplayer/adpcm.dll
/system/players/dvdplayer/libmad.dll
/system/players/dvdplayer/libdts.dll


# /addons/
/addons/com.nullsoft.milkdrop.xbmc/*.vis
/addons/org.xbmc.addons.dxspectrum/*.vis

# /tools/Changelog/
/tools/Changelog/Changelog.txt
/tools/Changelog/svn_log.xml
/tools/Changelog/Release
/tools/Changelog/Debug

# /tools/EventClients/
/tools/EventClients/*.pyc

# /tools/Linux/
/tools/Linux/xbmc.sh

# /tools/XBMCTex/
/tools/XBMCTex/Makefile

# /userdata/
/userdata/Database
/userdata/playlists
/userdata/Thumbnails
/userdata/cache
/userdata/guisettings.xml
/userdata/avpacksettings.xml

# /visualisations/
/visualisations/Goom.vis
/visualisations/ProjectM.vis
/visualisations/Waveform.vis
/visualisations/opengl_spectrum.vis
/visualisations/projectM/

# /xbmc/
/xbmc/DllPaths_generated.h
/xbmc/Makefile

# /xbmc/addons/
/xbmc/addons/Makefile

# /xbmc/linux/
/xbmc/linux/Makefile

# /xbmc/cores/AudioRenderers/
/xbmc/cores/AudioRenderers/Makefile

# /xbmc/cores/DllLoader/exports/
/xbmc/cores/DllLoader/exports/wrapper.def

/xbmc/cores/Makefile

/xbmc/cores/VideoRenderers/Makefile

/xbmc/cores/dvdplayer/Makefile

/xbmc/cores/dvdplayer/DVDCodecs/Audio/Makefile
/xbmc/cores/dvdplayer/DVDCodecs/Makefile
/xbmc/cores/dvdplayer/DVDCodecs/Overlay/Makefile
/xbmc/cores/dvdplayer/DVDCodecs/Video/CrystalHD/Makefile
/xbmc/cores/dvdplayer/DVDCodecs/Video/Makefile

/xbmc/cores/dvdplayer/DVDDemuxers/Makefile

/xbmc/cores/dvdplayer/DVDSubtitles/Makefile

/xbmc/cores/playercorefactory/Makefile

# /xbmc/cores/dvdplayer/Codecs/
/xbmc/cores/dvdplayer/Codecs/Makefile

# /xbmc/cores/dvdplayer/Codecs/ffmpeg/
/xbmc/cores/dvdplayer/Codecs/ffmpeg/config.h
/xbmc/cores/dvdplayer/Codecs/ffmpeg/config.err
/xbmc/cores/dvdplayer/Codecs/ffmpeg/config.mak
/xbmc/cores/dvdplayer/Codecs/ffmpeg/ffprobe
/xbmc/cores/dvdplayer/Codecs/ffmpeg/ffprobe_g
/xbmc/cores/dvdplayer/Codecs/ffmpeg/.version
/xbmc/cores/dvdplayer/Codecs/ffmpeg/version.h
/xbmc/cores/dvdplayer/Codecs/ffmpeg/libavutil/avconfig.h


# /xbmc/cores/dvdplayer/Codecs/liba52/
/xbmc/cores/dvdplayer/Codecs/liba52/config.log
/xbmc/cores/dvdplayer/Codecs/liba52/config.status
/xbmc/cores/dvdplayer/Codecs/liba52/libtool
/xbmc/cores/dvdplayer/Codecs/liba52/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/autotools/
/xbmc/cores/dvdplayer/Codecs/liba52/autotools/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/doc/
/xbmc/cores/dvdplayer/Codecs/liba52/doc/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/include/
/xbmc/cores/dvdplayer/Codecs/liba52/include/stamp-h
/xbmc/cores/dvdplayer/Codecs/liba52/include/config.h
/xbmc/cores/dvdplayer/Codecs/liba52/include/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/liba52/
/xbmc/cores/dvdplayer/Codecs/liba52/liba52/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/libao/
/xbmc/cores/dvdplayer/Codecs/liba52/libao/Makefil
/xbmc/cores/dvdplayer/Codecs/liba52/libao/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/src/
/xbmc/cores/dvdplayer/Codecs/liba52/src/Makefi
/xbmc/cores/dvdplayer/Codecs/liba52/src/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/test/
/xbmc/cores/dvdplayer/Codecs/liba52/test/Makefile

# /xbmc/cores/dvdplayer/Codecs/liba52/vc++/
/xbmc/cores/dvdplayer/Codecs/liba52/vc++/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/
/xbmc/cores/dvdplayer/Codecs/libdts/config.log
/xbmc/cores/dvdplayer/Codecs/libdts/config.h
/xbmc/cores/dvdplayer/Codecs/libdts/Makefile
/xbmc/cores/dvdplayer/Codecs/libdts/config.status
/xbmc/cores/dvdplayer/Codecs/libdts/stamp-h1
/xbmc/cores/dvdplayer/Codecs/libdts/configure.lineno
/xbmc/cores/dvdplayer/Codecs/libdts/vc++/libdts.lib

# /xbmc/cores/dvdplayer/Codecs/libdts/autotools/
/xbmc/cores/dvdplayer/Codecs/libdts/autotools/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/debian/
/xbmc/cores/dvdplayer/Codecs/libdts/debian/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/doc/
/xbmc/cores/dvdplayer/Codecs/libdts/doc/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/include/
/xbmc/cores/dvdplayer/Codecs/libdts/include/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/libao/
/xbmc/cores/dvdplayer/Codecs/libdts/libao/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/libdts/
/xbmc/cores/dvdplayer/Codecs/libdts/libdts/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/src/
/xbmc/cores/dvdplayer/Codecs/libdts/src/extract_dts
/xbmc/cores/dvdplayer/Codecs/libdts/src/dtsdec
/xbmc/cores/dvdplayer/Codecs/libdts/src/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/test/
/xbmc/cores/dvdplayer/Codecs/libdts/test/compare
/xbmc/cores/dvdplayer/Codecs/libdts/test/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdts/vc++/
/xbmc/cores/dvdplayer/Codecs/libdts/vc++/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdvd/
/xbmc/cores/dvdplayer/Codecs/libdvd/Makefile
/xbmc/cores/dvdplayer/Codecs/libbdnav/config.h.in~

# /xbmc/cores/dvdplayer/Codecs/libdvd/includes/
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dv

# /xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/ifo_print.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/dvd_udf.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/dvd_input.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/bswap.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/nav_read.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/dvd_reader.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/nav_print.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/ifo_types.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/bitreader.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/md5.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/dvdread
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/dvdread_internal.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/ifo_read.h
/xbmc/cores/dvdplayer/Codecs/libdvd/includes/dvdread/nav_types.h

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/config.log
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/config.st
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/stamp-h1
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/config.h
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/libtool
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/configure.lineno
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/Makefile
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/config.status

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/doc/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/doc/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/src/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/src/d
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/src/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/src/dvdcss/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/src/dvdcss/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/test/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/test/Makefile

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/conf
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/obj
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/config.mak
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/config.h
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/config.status
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/aclocal.m4
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/config.guess
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/config.h.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/config.sub
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/configure
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/depcomp
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/doc/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/examples/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/install-sh
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/ltmain.sh
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/m4/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/misc/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/missing
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/src/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/src/vm/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdnav/INSTALL

# /xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/config.h
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/obj
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/config.mak
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/aclocal.m4
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/config.guess
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/config.h.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/config.sub
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/configure
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/depcomp
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/install-sh
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/ltmain.sh
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/m4/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/misc/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/missing
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/src/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdread/INSTALL

# /xbmc/cores/dvdplayer/Codecs/libfaad2/
/xbmc/cores/dvdplayer/Codecs/libfaad2/config.log
/xbmc/cores/dvdplayer/Codecs/libfaad2/config.h
/xbmc/cores/dvdplayer/Codecs/libfaad2/Makefile
/xbmc/cores/dvdplayer/Codecs/libfaad2/config.status
/xbmc/cores/dvdplayer/Codecs/libfaad2/stamp-h1
/xbmc/cores/dvdplayer/Codecs/libfaad2/configure.lineno
/xbmc/cores/dvdplayer/Codecs/libfaad2/libtool
/xbmc/cores/dvdplayer/Codecs/libfaad2/faad2.spec
/xbmc/cores/dvdplayer/Codecs/libfaad2/libfaad/ReleaseDLL

# /xbmc/cores/dvdplayer/Codecs/libfaad2/common/
/xbmc/cores/dvdplayer/Codecs/libfaad2/common/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/common/mp4ff/
/xbmc/cores/dvdplayer/Codecs/libfaad2/common/mp4ff/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/frontend/
/xbmc/cores/dvdplayer/Codecs/libfaad2/frontend/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/libfaad/
/xbmc/cores/dvdplayer/Codecs/libfaad2/libfaad/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/
/xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/mpeg4ip/
/xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/mpeg4ip/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/xmms/
/xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/xmms/Makefile

# /xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/xmms/src/
/xbmc/cores/dvdplayer/Codecs/libfaad2/plugins/xmms/src/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmad/
/xbmc/cores/dvdplayer/Codecs/libmad/config.h
/xbmc/cores/dvdplayer/Codecs/libmad/Makefile
/xbmc/cores/dvdplayer/Codecs/libmad/config.status
/xbmc/cores/dvdplayer/Codecs/libmad/libmad.list
/xbmc/cores/dvdplayer/Codecs/libmad/libtool
/xbmc/cores/dvdplayer/Codecs/libmad/config.log
/xbmc/cores/dvdplayer/Codecs/libmad/stamp-h1
/xbmc/cores/dvdplayer/Codecs/libmad/configure.lineno

# /xbmc/cores/dvdplayer/Codecs/libmad/msvc++/
/xbmc/cores/dvdplayer/Codecs/libmad/msvc++/Makefile
/xbmc/cores/dvdplayer/Codecs/libmad/msvc++/libmad.lib

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/config.log
/xbmc/cores/dvdplayer/Codecs/libmpeg2/config.status
/xbmc/cores/dvdplayer/Codecs/libmpeg2/libtool
/xbmc/cores/dvdplayer/Codecs/libmpeg2/configure.lineno
/xbmc/cores/dvdplayer/Codecs/libmpeg2/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/doc/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/doc/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/include/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/include/stamp-h1
/xbmc/cores/dvdplayer/Codecs/libmpeg2/include/config.h
/xbmc/cores/dvdplayer/Codecs/libmpeg2/include/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/libmpeg2/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/libmpeg2/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/libmpeg2/convert/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/libmpeg2/convert/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/libvo/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/libvo/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/src/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/src/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/test/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/test/Makefile

# /xbmc/cores/dvdplayer/Codecs/libmpeg2/vc++/
/xbmc/cores/dvdplayer/Codecs/libmpeg2/vc++/Makefile

# /xbmc/cores/paplayer/
/xbmc/cores/paplayer/Makefile

# /xbmc/cores/paplayer/AC3Codec/
/xbmc/cores/paplayer/AC3Codec/Makefile
/xbmc/cores/paplayer/AC3Codec/vc++/AC3Codec.lib

# /xbmc/cores/paplayer/NSFCodec/
/xbmc/cores/paplayer/NSFCodec/NoseFart.lib

# /xbmc/cores/paplayer/ADPCMCodec/
/xbmc/cores/paplayer/ADPCMCodec/Makefile
/xbmc/cores/paplayer/ADPCMCodec/adpcm.lib

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/Makefilee
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/config.log
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/config.h
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/config.status
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/libtool-disable-static
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/stamp-h1
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/configure.lineno
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/config.cache
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/Makefile
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/libtool

/xbmc/cores/paplayer/FLACCodec/Makefile
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/test_libs_common/Makefile
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/ppc/Makefile
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/ppc/as/Makefile
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/ppc/gas/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/build/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/build/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/FLAC/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/FLAC/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/FLAC++/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/FLAC++/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/share/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/share/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/share/grabbag/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/include/share/grabbag/Makefile


# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/m4/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/m4/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/debug/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/debug/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/debug/bin/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/debug/bin/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/debug/lib/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/debug/lib/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/release/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/release/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/release/bin/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/release/bin/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/release/lib/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/obj/release/lib/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/flac/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/flac/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/ia32/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/ia32/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/include/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/include/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/include/private/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/include/private/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/include/protected/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC/include/protected/Makefile




# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC++/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/libFLAC++/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/metaflac/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/metaflac/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/monkeys_audio_utilities/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/monkeys_audio_utilities/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/monkeys_audio_utilities/flac_mac/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/monkeys_audio_utilities/flac_mac/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/monkeys_audio_utilities/flac_ren/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/monkeys_audio_utilities/flac_ren/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_common/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_common/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_winamp2/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_winamp2/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_winamp2/include/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_winamp2/include/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_winamp2/include/winamp2/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_winamp2/include/winamp2/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_xmms/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/plugin_xmms/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/getopt/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/getopt/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/grabbag/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/grabbag/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_analysis/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_analysis/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_synthesis/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_synthesis/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_synthesis/include/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_synthesis/include/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_synthesis/include/private/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/replaygain_synthesis/include/private/Makefile

# /xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/utf8/
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/share/utf8/Makefile

# /xbmc/cores/paplayer/GYMCodec/
/xbmc/cores/paplayer/GYMCodec/Makefile

# /xbmc/cores/paplayer/MACDll/
/xbmc/cores/paplayer/MACDll/Makefile

# /xbmc/cores/paplayer/NSFCodec/
/xbmc/cores/paplayer/NSFCodec/Makefile

# /xbmc/cores/paplayer/SIDCodec/
/xbmc/cores/paplayer/SIDCodec/Makefile

# /xbmc/cores/paplayer/SPCCodec/SNES/SNESAPU/
/xbmc/cores/paplayer/SPCCodec/SNES/SNESAPU/Makefile

# /xbmc/cores/paplayer/WavPackCodec/
/xbmc/cores/paplayer/WavPackCodec/Makefile

# /xbmc/cores/paplayer/YMCodec/StSoundLibrary/
/xbmc/cores/paplayer/YMCodec/StSoundLibrary/Makefile
/xbmc/cores/paplayer/YMCodec/StSoundLibrary/StSoundLibrary.lib

# /xbmc/cores/paplayer/ogg/

# /xbmc/cores/paplayer/shn/


# /xbmc/cores/paplayer/timidity/
/xbmc/cores/paplayer/timidity/Makefile

# /xbmc/cores/paplayer/vgmstream/
/xbmc/cores/paplayer/vgmstream/Makefile

# /xbmc/cores/paplayer/vgmstream/win32/
/xbmc/cores/paplayer/vgmstream/win32/Debug
/xbmc/cores/paplayer/vgmstream/win32/Release
/xbmc/cores/paplayer/vgmstream/win32/win32.ncb
/xbmc/cores/paplayer/vgmstream/win32/win32.suo
/xbmc/cores/paplayer/vgmstream/win32/win32.lib

# /xbmc/cores/paplayer/vorbisfile/
/xbmc/cores/paplayer/vorbisfile/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/
/xbmc/cores/paplayer/vorbisfile/libvorbis/config.log
/xbmc/cores/paplayer/vorbisfile/libvorbis/config.h
/xbmc/cores/paplayer/vorbisfile/libvorbis/Makefile
/xbmc/cores/paplayer/vorbisfile/libvorbis/libvorbis.spec
/xbmc/cores/paplayer/vorbisfile/libvorbis/config.status
/xbmc/cores/paplayer/vorbisfile/libvorbis/stamp-h1
/xbmc/cores/paplayer/vorbisfile/libvorbis/configure.lineno
/xbmc/cores/paplayer/vorbisfile/libvorbis/libtool

# /xbmc/cores/paplayer/vorbisfile/libvorbis/doc/
/xbmc/cores/paplayer/vorbisfile/libvorbis/doc/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/doc/vorbisenc/
/xbmc/cores/paplayer/vorbisfile/libvorbis/doc/vorbisenc/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/doc/vorbisfile/
/xbmc/cores/paplayer/vorbisfile/libvorbis/doc/vorbisfile/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/examples/
/xbmc/cores/paplayer/vorbisfile/libvorbis/examples/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/include/
/xbmc/cores/paplayer/vorbisfile/libvorbis/include/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/include/vorbis/
/xbmc/cores/paplayer/vorbisfile/libvorbis/include/vorbis/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/lib/
/xbmc/cores/paplayer/vorbisfile/libvorbis/lib/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/
/xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/coupled/
/xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/coupled/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/floor/
/xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/floor/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/uncoupled/
/xbmc/cores/paplayer/vorbisfile/libvorbis/lib/books/uncoupled/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/lib/modes/
/xbmc/cores/paplayer/vorbisfile/libvorbis/lib/modes/Makefile

# /xbmc/cores/paplayer/vorbisfile/libvorbis/vq/
/xbmc/cores/paplayer/vorbisfile/libvorbis/vq/Makefile

# /xbmc/cores/paplayer/vorbisfile/ogg/
/xbmc/cores/paplayer/vorbisfile/ogg/config.log
/xbmc/cores/paplayer/vorbisfile/ogg/config.h
/xbmc/cores/paplayer/vorbisfile/ogg/Makefile
/xbmc/cores/paplayer/vorbisfile/ogg/config.status
/xbmc/cores/paplayer/vorbisfile/ogg/stamp-h1
/xbmc/cores/paplayer/vorbisfile/ogg/libogg.spec
/xbmc/cores/paplayer/vorbisfile/ogg/configure.lineno
/xbmc/cores/paplayer/vorbisfile/ogg/libtool
/xbmc/cores/paplayer/vorbisfile/ogg/win32/Static_Debug/

# /xbmc/cores/paplayer/vorbisfile/ogg/doc/
/xbmc/cores/paplayer/vorbisfile/ogg/doc/Makefile

# /xbmc/cores/paplayer/vorbisfile/ogg/doc/libogg/
/xbmc/cores/paplayer/vorbisfile/ogg/doc/libogg/Makefile

# /xbmc/cores/paplayer/vorbisfile/ogg/include/
/xbmc/cores/paplayer/vorbisfile/ogg/include/Makefile

# /xbmc/cores/paplayer/vorbisfile/ogg/include/ogg/
/xbmc/cores/paplayer/vorbisfile/ogg/include/ogg/config_types.h
/xbmc/cores/paplayer/vorbisfile/ogg/include/ogg/Makefile

# /xbmc/cores/paplayer/vorbisfile/ogg/src/
/xbmc/cores/paplayer/vorbisfile/ogg/src/Makefile

# /xbmc/cores/paplayer/vorbisfile/ogg/win32/
/xbmc/cores/paplayer/vorbisfile/ogg/win32/Makefile

# /xbmc/karaoke/
/xbmc/karaoke/Makefile

/xbmc/lib/libRTV/Makefile

/xbmc/lib/libUPnP/Makefile

/xbmc/lib/libXBMS/Makefile

/xbmc/lib/libXDAAP/Makefile

/xbmc/lib/libexif/Makefile

/xbmc/lib/libhdhomerun/Makefile

/xbmc/lib/libshout/Makefile

/xbmc/lib/libsquish/Makefile
/xbmc/lib/libsquish/lib/squishd.lib
/xbmc/lib/libsquish/lib/squish.lib

# /xbmc/lib/cmyth/
/xbmc/lib/cmyth/Makefile.depend

# /xbmc/lib/cximage-6.0/
/xbmc/lib/cximage-6.0/Makefile

# /xbmc/lib/cximage-6.0/zlib/
/xbmc/lib/cximage-6.0/zlib/zconf.h
/xbmc/lib/cximage-6.0/zlib/Makefile

# /skin/
/skin/Confluence/media/Textures.xbt
/skin/PM3.HD/media/Textures.xbt

# /lib/cpluff/
/lib/cpluff/ABOUT-NLS
/lib/cpluff/aclocal.m4
/lib/cpluff/autom4te.cache
/lib/cpluff/auxliary
/lib/cpluff/config.h
/lib/cpluff/config.h.in
/lib/cpluff/config.h.in~
/lib/cpluff/configure
/lib/cpluff/console
/lib/cpluff/doc*
/lib/cpluff/examples
/lib/cpluff/libcpluff/docsrc
/lib/cpluff/libcpluff/Makefile.in
/lib/cpluff/libtool
/lib/cpluff/loader
/lib/cpluff/m4
/lib/cpluff/Makefile.in
/lib/cpluff/po
/lib/cpluff/stamp-h1
/lib/cpluff/test
/lib/cpluff/Makefile
/lib/cpluff/libcpluff/Makefile
/lib/cpluff/libcpluff/cpluffdef.h

# /lib/libmodplug/
/lib/libmodplug/libtool
/lib/libmodplug/src/stamp-h1
/lib/libmodplug/Makefile
/lib/libmodplug/src/Makefile
/lib/libmodplug/src/config.h

/system/python/Lib/
/system/python/python24.zip

/tools/EventClients/Clients/OSXRemote/Makefile
/tools/EventClients/Clients/OSXRemote/build/

/tools/TexturePacker/TexturePacker
/tools/TexturePacker/Makefile

/tools/osx/XBMCHelper

/xbmc/cores/DllLoader/exports/build_wrapper.sh

/xbmc/cores/dvdplayer/Codecs/ffmpeg/doc/*.html
/xbmc/cores/dvdplayer/Codecs/ffmpeg/doc/*.1

/xbmc/cores/dvdplayer/Codecs/liba52/include/stamp-h1
/xbmc/cores/dvdplayer/Codecs/liba52/src/a52dec
/xbmc/cores/dvdplayer/Codecs/liba52/src/extract_a52
/xbmc/cores/dvdplayer/Codecs/liba52/test/compare

/xbmc/cores/dvdplayer/Codecs/libbdnav/config.h
/xbmc/cores/dvdplayer/Codecs/libbdnav/Makefile
/xbmc/cores/dvdplayer/Codecs/libbdnav/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libbdnav/aclocal.m4
/xbmc/cores/dvdplayer/Codecs/libbdnav/autom4te.cache/
/xbmc/cores/dvdplayer/Codecs/libbdnav/build-aux/
/xbmc/cores/dvdplayer/Codecs/libbdnav/config.h.in
/xbmc/cores/dvdplayer/Codecs/libbdnav/configure
/xbmc/cores/dvdplayer/Codecs/libbdnav/libtool
/xbmc/cores/dvdplayer/Codecs/libbdnav/m4/*
/xbmc/cores/dvdplayer/Codecs/libbdnav/src/libbdnav/Makefile
/xbmc/cores/dvdplayer/Codecs/libbdnav/src/libbdnav/Makefile.in
/xbmc/cores/dvdplayer/Codecs/libbdnav/stamp-h1

/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/doc/doxygen.cfg
/xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss/test/csstest

/xbmc/cores/dvdplayer/Codecs/libfaad2/frontend/faad

/xbmc/cores/dvdplayer/Codecs/libmad/mad.h
/xbmc/cores/dvdplayer/Codecs/libmpeg2/src/corrupt_mpeg2
/xbmc/cores/dvdplayer/Codecs/libmpeg2/src/extract_mpeg2
/xbmc/cores/dvdplayer/Codecs/libmpeg2/src/mpeg2dec

/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/flac/flac
/xbmc/cores/paplayer/FLACCodec/flac-1.2.1/src/metaflac/metaflac

/xbmc/cores/paplayer/vorbisfile/ogg/src/test_bitwise
/xbmc/cores/paplayer/vorbisfile/ogg/src/test_framing

/xbmc/lib/libPython/linux/Makefile
/xbmc/lib/libPython/linux/wrapper_python.def
/xbmc/lib/libPython/Python/Makefile
/xbmc/lib/libPython/Python/Include/pyconfig.h
/xbmc/lib/libPython/Python/Makefile.pre
/xbmc/lib/libPython/Python/Modules/Setup
/xbmc/lib/libPython/Python/Modules/Setup.config
/xbmc/lib/libPython/Python/Modules/Setup.local
/xbmc/lib/libPython/Python/Modules/config.c
/xbmc/lib/libPython/Python/Parser/pgen
/xbmc/lib/libPython/Python/build/
/xbmc/lib/libPython/Python/buildno
/xbmc/lib/libPython/Python/pyconfig.h
/xbmc/lib/libPython/Python/pyconfig.hbak
/xbmc/lib/libPython/Python/python
/xbmc/lib/libPython/Python/python.exe
/xbmc/lib/libPython/Python/Mac/Python/

/xbmc/lib/libapetag/Makefile
/xbmc/lib/libapetag/libtool
/xbmc/lib/libapetag/stamp-h1
/xbmc/lib/libapetag/config.h

/xbmc/lib/libass/config.guess
/xbmc/lib/libass/config.h
/xbmc/lib/libass/config.sub
/xbmc/lib/libass/depcomp
/xbmc/lib/libass/Makefile
/xbmc/lib/libass/libass/Makefile
/xbmc/lib/libass/test/Makefile
/xbmc/lib/libass/xbmc/Makefile
/xbmc/lib/libass/Makefile.in
/xbmc/lib/libass/aclocal.m4
/xbmc/lib/libass/autom4te.cache/
/xbmc/lib/libass/compile
/xbmc/lib/libass/config.h.in
/xbmc/lib/libass/config.h.in~
/xbmc/lib/libass/configure
/xbmc/lib/libass/install-sh
/xbmc/lib/libass/libass/Makefile.in
/xbmc/lib/libass/libtool
/xbmc/lib/libass/ltmain.sh
/xbmc/lib/libass/missing
/xbmc/lib/libass/shave/libtool.m4
/xbmc/lib/libass/shave/ltoptions.m4
/xbmc/lib/libass/shave/ltsugar.m4
/xbmc/lib/libass/shave/ltversion.m4
/xbmc/lib/libass/shave/lt~obsolete.m4
/xbmc/lib/libass/shave/shave
/xbmc/lib/libass/shave/shave-libtool
/xbmc/lib/libass/stamp-h1
/xbmc/lib/libass/test/Makefile.in
/xbmc/lib/libass/test/test

/xbmc/lib/libid3tag/Makefile
/xbmc/lib/libid3tag/libid3tag/Makefile
/xbmc/lib/libid3tag/libid3tag/compat.c
/xbmc/lib/libid3tag/libid3tag/config.h
/xbmc/lib/libid3tag/libid3tag/frametype.c
/xbmc/lib/libid3tag/libid3tag/libid3tag.list
/xbmc/lib/libid3tag/libid3tag/libtool
/xbmc/lib/libid3tag/libid3tag/stamp-h1
/xbmc/lib/libid3tag/libid3tag/msvc++/Makefile
/xbmc/lib/libid3tag/libid3tag/msvc++/libid3tag.lib

/xbmc/lib/libhttpapi/Makefile

/xbmc/lib/libjsonrpc/Makefile

/xbmc/screensavers/Makefile

/xbmc/screensavers/rsxs-0.9/Makefile
/xbmc/screensavers/rsxs-0.9/config.h
/xbmc/screensavers/rsxs-0.9/config.log
/xbmc/screensavers/rsxs-0.9/config/Makefile
/xbmc/screensavers/rsxs-0.9/lib/Makefile
/xbmc/screensavers/rsxs-0.9/libltdl/Makefile
/xbmc/screensavers/rsxs-0.9/src/Makefile
/xbmc/screensavers/rsxs-0.9/src/cyclone/Makefile
/xbmc/screensavers/rsxs-0.9/src/euphoria/Makefile
/xbmc/screensavers/rsxs-0.9/src/fieldlines/Makefile
/xbmc/screensavers/rsxs-0.9/src/flocks/Makefile
/xbmc/screensavers/rsxs-0.9/src/flux/Makefile
/xbmc/screensavers/rsxs-0.9/src/helios/Makefile
/xbmc/screensavers/rsxs-0.9/src/hyperspace/Makefile
/xbmc/screensavers/rsxs-0.9/src/lattice/Makefile
/xbmc/screensavers/rsxs-0.9/src/plasma/Makefile
/xbmc/screensavers/rsxs-0.9/src/skyrocket/Makefile
/xbmc/screensavers/rsxs-0.9/src/solarwinds/Makefile
/xbmc/screensavers/rsxs-0.9/xbmc/Makefile
/xbmc/screensavers/rsxs-0.9/autom4te.cache/
/xbmc/screensavers/rsxs-0.9/lib/alloca.h
/xbmc/screensavers/rsxs-0.9/lib/argz.h
/xbmc/screensavers/rsxs-0.9/lib/getopt.h
/xbmc/screensavers/rsxs-0.9/rsxs.spec
/xbmc/screensavers/rsxs-0.9/src/.dirstamp
/xbmc/screensavers/rsxs-0.9/src/euphoria/rs-euphoria
/xbmc/screensavers/rsxs-0.9/src/plasma/rs-plasma
/xbmc/screensavers/rsxs-0.9/src/solarwinds/rs-solarwinds
/xbmc/screensavers/rsxs-0.9/stamp-h1

/xbmc/visualizations/Goom/Makefile

/xbmc/visualizations/OpenGLSpectrum/Makefile

/xbmc/visualizations/WaveForm/Makefile

/xbmc/visualizations/iTunes/Makefile

/xbmc/visualizations/XBMCProjectM/Makefile
/xbmc/visualizations/XBMCProjectM/libprojectM/Makefile
/xbmc/visualizations/XBMCProjectM/libprojectM/CMakeCache.txt
/xbmc/visualizations/XBMCProjectM/libprojectM/CMakeFiles/
/xbmc/visualizations/XBMCProjectM/libprojectM/cmake_install.cmake
/xbmc/visualizations/XBMCProjectM/libprojectM/config.inp

/xbmc/FileSystem/Makefile

/lib/jsoncpp/jsoncpp/src/lib_json/Makefile

/lib/libmicrohttpd/MHD_config.h
/lib/libmicrohttpd/Makefile
/lib/libmicrohttpd/contrib/Makefile
/lib/libmicrohttpd/doc/Makefile
/lib/libmicrohttpd/doc/microhttpd.info
/lib/libmicrohttpd/doc/stamp-vti
/lib/libmicrohttpd/doc/version.texi
/lib/libmicrohttpd/libtool
/lib/libmicrohttpd/m4/Makefile
/lib/libmicrohttpd/src/Makefile
/lib/libmicrohttpd/src/daemon/Makefile
/lib/libmicrohttpd/src/daemon/https/Makefile
/lib/libmicrohttpd/src/daemon/https/lgl/Makefile
/lib/libmicrohttpd/src/daemon/https/minitasn1/Makefile
/lib/libmicrohttpd/src/daemon/https/tls/Makefile
/lib/libmicrohttpd/src/daemon/https/x509/Makefile
/lib/libmicrohttpd/src/examples/Makefile
/lib/libmicrohttpd/src/examples/authorization_example
/lib/libmicrohttpd/src/examples/fileserver_example
/lib/libmicrohttpd/src/examples/fileserver_example_dirs
/lib/libmicrohttpd/src/examples/fileserver_example_external_select
/lib/libmicrohttpd/src/examples/https_fileserver_example
/lib/libmicrohttpd/src/examples/minimal_example
/lib/libmicrohttpd/src/examples/minimal_example_comet
/lib/libmicrohttpd/src/examples/querystring_example
/lib/libmicrohttpd/src/examples/refuse_post_example
/lib/libmicrohttpd/src/testcurl/daemon_options_test
/lib/libmicrohttpd/src/testcurl/Makefile
/lib/libmicrohttpd/src/testcurl/https/Makefile
/lib/libmicrohttpd/src/include/Makefile
/lib/libmicrohttpd/src/testzzuf/Makefile
/lib/libmicrohttpd/stamp-h1
/lib/libmicrohttpd/autom4te.cache/