X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2FMakefile.am;h=31c6d837172e5689fed8a2397c02fa655fbdc0aa;hb=13db37f57fc6053816fd41204e38b9999e0aa746;hp=9205ea26ecab0975a22a7d8a5a425fd89483426b;hpb=faa4825584d2b5a3f91bcb9a85a42f94519c9f9c;p=vlc diff --git a/modules/Makefile.am b/modules/Makefile.am index 9205ea26ec..31c6d83717 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -10,7 +10,6 @@ BASE_SUBDIRS = \ gui \ meta_engine \ misc \ - media_library \ notify \ packetizer \ services_discovery \ @@ -25,9 +24,7 @@ EXTRA_SUBDIRS = \ mux \ stream_out \ mmx \ - mmxext \ sse2 \ - 3dnow \ altivec \ arm_neon \ lua \ @@ -41,15 +38,9 @@ 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 @@ -63,24 +54,3 @@ SUBDIRS += . dist_noinst_SCRIPTS = genmf list.sh dist_noinst_DATA = LIST -noinst_DATA = plugins.dat -MOSTLYCLEANFILES = $(noinst_DATA) - -.PHONY: plugins.dat - -plugins.dat: - $(AM_V_at)rm -f plugins.dat - $(AM_V_GEN)if test "$(build)" = "$(host)"; then \ - ../bin/vlc-cache-gen$(EXEEXT) . ; \ - else \ - echo "Cross-compilation: cache generation skipped!" ; \ - fi - -install-exec-hook: - if test "$(build)" = "$(host)"; then \ - LD_LIBRARY_PATH="$(DESTDIR)$(libdir):$$LD_LIBRARY_PATH" \ - "$(DESTDIR)$(vlclibdir)/vlc-cache-gen$(EXEEXT)" \ - "$(DESTDIR)$(vlclibdir)/plugins" ; \ - else \ - echo "Cross-compilation: cache generation skipped!" ; \ - fi