Mercurial > mplayer.hg
comparison Makefile @ 33800:844786b8f768
Makfile: split non-native directories from native directories in DIRS
gui/win32: use C99 bool type instead of Windows BOOL
author | diego |
---|---|
date | Thu, 21 Jul 2011 22:24:57 +0000 |
parents | 2a145501610c |
children | 5ebf5dc12543 |
comparison
equal
deleted
inserted
replaced
33799:6a9627d6f8f1 | 33800:844786b8f768 |
---|---|
718 gui/win32 \ | 718 gui/win32 \ |
719 gui/wm \ | 719 gui/wm \ |
720 input \ | 720 input \ |
721 libaf \ | 721 libaf \ |
722 libao2 \ | 722 libao2 \ |
723 libass \ | |
724 libdvdcss \ | |
725 libdvdnav \ | |
726 libdvdnav/vm \ | |
727 libdvdread4 \ | |
728 libmenu \ | 723 libmenu \ |
729 libmpcodecs \ | 724 libmpcodecs \ |
730 libmpcodecs/native \ | 725 libmpcodecs/native \ |
731 libmpdemux \ | 726 libmpdemux \ |
732 libmpeg2 \ | |
733 libvo \ | 727 libvo \ |
734 loader \ | 728 loader \ |
729 loader/dmo \ | |
735 loader/dshow \ | 730 loader/dshow \ |
736 loader/dmo \ | |
737 loader/wine \ | 731 loader/wine \ |
738 mp3lib \ | 732 mp3lib \ |
739 osdep \ | 733 osdep \ |
740 stream \ | 734 stream \ |
741 stream/freesdp \ | 735 stream/freesdp \ |
742 stream/librtsp \ | 736 stream/librtsp \ |
743 stream/realrtsp \ | 737 stream/realrtsp \ |
744 sub \ | 738 sub \ |
745 tremor \ | |
746 TOOLS \ | 739 TOOLS \ |
747 vidix \ | 740 vidix \ |
748 | 741 |
742 ALL_DIRS = $(DIRS) \ | |
743 libass \ | |
744 libdvdcss \ | |
745 libdvdnav \ | |
746 libdvdnav/vm \ | |
747 libdvdread4 \ | |
748 libmpeg2 \ | |
749 tremor \ | |
750 | |
749 ALLHEADERS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.h)) | 751 ALLHEADERS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.h)) |
750 | 752 |
751 ADDSUFFIXES = $(foreach suf,$(1),$(addsuffix $(suf),$(2))) | 753 ADDSUFFIXES = $(foreach suf,$(1),$(addsuffix $(suf),$(2))) |
752 ADD_ALL_DIRS = $(call ADDSUFFIXES,$(1),$(DIRS)) | 754 ADD_ALL_DIRS = $(call ADDSUFFIXES,$(1),$(ALL_DIRS)) |
753 ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1)) | 755 ADD_ALL_EXESUFS = $(1) $(call ADDSUFFIXES,$(EXESUFS_ALL),$(1)) |
754 | 756 |
755 | 757 |
756 | 758 |
757 ###### generic rules ####### | 759 ###### generic rules ####### |