]> git.sesse.net Git - vlc/blobdiff - modules/Makefile.am
macosx: disable extensions submenu when they are no items to display
[vlc] / modules / Makefile.am
index 6c2dfccb68a8dfcbe7f2c58c79ab3011a759ca24..805232402d5e80402783a3380bc2fe06f5cca31f 100644 (file)
@@ -10,9 +10,12 @@ BASE_SUBDIRS = \
        gui \
        meta_engine \
        misc \
+       media_library \
+       notify \
        packetizer \
        services_discovery \
        stream_filter \
+       text_renderer \
        video_chroma \
        video_filter \
        video_output \
@@ -22,11 +25,10 @@ EXTRA_SUBDIRS = \
        mux \
        stream_out \
        mmx \
-       mmxext \
        sse2 \
-       3dnow \
        altivec \
        arm_neon \
+       lua \
        $(NULL)
 
 SUBDIRS = $(BASE_SUBDIRS)
@@ -37,41 +39,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 \
-               ../bin/vlc-cache-gen$(EXEEXT) "$(vlclibdir)/modules" ; \
-       else \
-               echo "Staged installation: cache generation skipped!" ; \
-       fi