]> git.sesse.net Git - vlc/commitdiff
Remove a bunch of obsoleted kludges
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 28 Apr 2008 19:31:32 +0000 (22:31 +0300)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 28 Apr 2008 19:31:32 +0000 (22:31 +0300)
We don't need to invoke make twice in every directory, and we don't need
the awful libtool install kludge anymore.

modules/common.am

index 727a230e4799be7cb76acb60dbadf73c5fb181c9..1036b8e448836b8191c0d8d2e808d75bc492fb31 100644 (file)
@@ -33,41 +33,10 @@ AM_LDFLAGS += -export-symbol-regex ^vlc_entry
 endif
 endif
 
-all: all-modules
-
 nice:
        $(top_builddir)/compile
 
-# Find out which modules were enabled and tell make to build them
-all-modules:
-       @set fnord $$MAKEFLAGS; amf=$$2; targets=`\
-       z=$$($(VLC_CONFIG) --list plugin); for mod in $(mods); do case "$$z " in *\ $${mod}\ *) echo lib$${mod}_plugin.la;; esac; done; \
-       `; case "$$targets" in *lib*) $(MAKE) $(AM_MAKEFLAGS) $$targets || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; ;; esac; \
-       test -z "$$fail"
-
 if MAINTAINER_MODE
 $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
        cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
 endif
-
-mostlyclean-local:
-       -rm -f -- *.la
-
-### automake creates libvlcdir after running install-*-local
-### so we have to create it ourselves first
-install-exec-local: all-modules
-       @if test -z "$(libvlc_LTLIBRARIES)"; then \
-         z=$$($(VLC_CONFIG) --list plugin); \
-         m=`for mod in $(mods); do case "$$z " in *\ $${mod}\ *) printf " lib$${mod}_plugin.la" ;; esac; done` ; \
-         test -z "$$m" || \
-           $(MAKE) $(AM_MAKEFLAGS) libvlc_LTLIBRARIES="$$m" install-libvlcLTLIBRARIES || exit $$? ; \
-       fi
-
-uninstall-local:
-       @if test -z "$(libvlc_LTLIBRARIES)"; then \
-         z=$$($(VLC_CONFIG) --list plugin); \
-         m=`for mod in $(mods); do case "$$z " in *\ $${mod}\ *) printf " lib$${mod}_plugin.la" ;; esac; done` ; \
-         test -z "$$m" || \
-           $(MAKE) $(AM_MAKEFLAGS) libvlc_LTLIBRARIES="$$m" uninstall-libvlcLTLIBRARIES || exit $$?; \
-       fi
-