Commit 2040035d authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove dead and ugly code of mine

parent 76e8a579
...@@ -6,8 +6,7 @@ ...@@ -6,8 +6,7 @@
# Authors: Sam Hocevar <sam@zoy.org> # Authors: Sam Hocevar <sam@zoy.org>
NULL = NULL =
SUFFIXES = _plugin$(LIBEXT) _plugin.la SUFFIXES =
libvlcdir = $(libdir)/vlc/$(basedir) libvlcdir = $(libdir)/vlc/$(basedir)
libvlc_LTLIBRARIES = libvlc_LTLIBRARIES =
EXTRA_DIST = Modules.am EXTRA_DIST = Modules.am
...@@ -47,18 +46,6 @@ all-modules: ...@@ -47,18 +46,6 @@ all-modules:
`; case "$$targets" in *lib*) $(MAKE) $(AM_MAKEFLAGS) $$targets || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; ;; esac; \ `; case "$$targets" in *lib*) $(MAKE) $(AM_MAKEFLAGS) $$targets || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; ;; esac; \
test -z "$$fail" test -z "$$fail"
# Build a plugin with the adequate linker and linker's flags
_plugin.la_plugin$(LIBEXT):
@mod="$*" ; mod=$${mod#lib} ; \
ldfl="`$(VLC_CONFIG) --libs plugin $$mod` $(LIBVLC) -u $(SYMPREF)$(VLC_ENTRY)" ; \
case `$(VLC_CONFIG) --linkage $$mod` in \
c++) ld="$(CXXLINK)" ;; \
objc) ld="$(OBJCLINK)" ;; \
c|*) ld="$(LINK)" ;; \
esac ; \
echo $$ld $< $$ldfl ; \
$$ld $< $$ldfl
if MAINTAINER_MODE if MAINTAINER_MODE
$(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
cd \$(top_srcdir) && \$(SHELL) modules/genmf ${dir} cd \$(top_srcdir) && \$(SHELL) modules/genmf ${dir}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment