X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2FMakefile.am;h=31c6d837172e5689fed8a2397c02fa655fbdc0aa;hb=501a65be1293cabd8fe2c8a700c53dee602749fe;hp=1a2ad33fb36a9e4c966bd98dc9a93ff3f1447890;hpb=7690e538aa8ad75a872bd0235f528d2d8f54675f;p=vlc diff --git a/modules/Makefile.am b/modules/Makefile.am index 1a2ad33fb3..31c6d83717 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -1,6 +1,6 @@ +NULL = BASE_SUBDIRS = \ access \ - access_filter \ audio_filter \ audio_mixer \ audio_output \ @@ -10,8 +10,11 @@ BASE_SUBDIRS = \ gui \ meta_engine \ misc \ + notify \ packetizer \ services_discovery \ + stream_filter \ + text_renderer \ video_chroma \ video_filter \ video_output \ @@ -19,13 +22,35 @@ BASE_SUBDIRS = \ EXTRA_SUBDIRS = \ access_output \ mux \ - stream_out + stream_out \ + mmx \ + sse2 \ + altivec \ + arm_neon \ + lua \ + $(NULL) SUBDIRS = $(BASE_SUBDIRS) -DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) +DIST_SUBDIRS = $(BASE_SUBDIRS) $(EXTRA_SUBDIRS) . if ENABLE_SOUT SUBDIRS += access_output mux stream_out endif +if HAVE_MMX +SUBDIRS += mmx +endif +if HAVE_SSE2 +SUBDIRS += sse2 +endif +if HAVE_ALTIVEC +SUBDIRS += altivec +endif +if HAVE_NEON +SUBDIRS += arm_neon +endif +if BUILD_LUA +SUBDIRS += lua +endif +SUBDIRS += . dist_noinst_SCRIPTS = genmf list.sh dist_noinst_DATA = LIST