X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2FMakefile.am;h=31c6d837172e5689fed8a2397c02fa655fbdc0aa;hb=f73ef73e576a14deb50c879597a28c5bc00a4179;hp=bb5cf0fe5cf8df06f0c1938aa35ab529ca38cd6a;hpb=a1f89b24212225dce7da32aeaee64772926b5e20;p=vlc diff --git a/modules/Makefile.am b/modules/Makefile.am index bb5cf0fe5c..31c6d83717 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -10,9 +10,11 @@ BASE_SUBDIRS = \ gui \ meta_engine \ misc \ + notify \ packetizer \ services_discovery \ stream_filter \ + text_renderer \ video_chroma \ video_filter \ video_output \ @@ -22,11 +24,10 @@ EXTRA_SUBDIRS = \ mux \ stream_out \ mmx \ - mmxext \ sse2 \ - 3dnow \ altivec \ arm_neon \ + lua \ $(NULL) SUBDIRS = $(BASE_SUBDIRS) @@ -37,41 +38,19 @@ endif if HAVE_MMX SUBDIRS += mmx endif -if HAVE_MMXEXT -SUBDIRS += mmxext -endif if HAVE_SSE2 SUBDIRS += sse2 endif -if HAVE_3DNOW -SUBDIRS += 3dnow -endif if HAVE_ALTIVEC SUBDIRS += altivec endif -if HAVE_ARM_NEON +if HAVE_NEON SUBDIRS += arm_neon endif +if BUILD_LUA +SUBDIRS += lua +endif SUBDIRS += . dist_noinst_SCRIPTS = genmf list.sh dist_noinst_DATA = LIST -noinst_DATA = stamp-cache -MOSTLYCLEANFILES = stamp-cache plugins-*-*.dat - -.PHONY: stamp-cache - -stamp-cache: - $(AM_V_GEN)if test "$(build)" = "$(host)"; then \ - ../bin/vlc-cache-gen$(EXEEXT) . ; \ - else \ - echo "Cross-compilation: cache generation skipped!" ; \ - fi - $(AM_V_at)touch stamp-cache - -install-exec-hook: - if test -z "$(DESTDIR)"; then \ - cd "$(vlclibdir)" && ./vlc-cache-gen . ; \ - else \ - echo "Staged installation: cache generation skipped!" ; \ - fi