]> git.sesse.net Git - vlc/blobdiff - modules/common.am
Implement OS/2 specific initialization
[vlc] / modules / common.am
index 9ca22b606d0a645ea43f413b3e8b59abaaf7a88a..3dd8ad2e4ed5e54845d4f7a8e338d7e28dfe33b5 100644 (file)
@@ -6,77 +6,36 @@
 # Authors: Sam Hocevar <sam@zoy.org>
 
 NULL =
-SUFFIXES = _plugin$(LIBEXT) _plugin.la
-
-libvlcdir = $(libdir)/vlc/$(basedir)
-libvlc_LTLIBRARIES =
+libvlcdir = $(vlclibdir)/plugins/$(basedir)
 EXTRA_DIST = Modules.am
 BUILT_SOURCES =
-CLEANFILES =
+CLEANFILES = $(BUILT_SOURCES)
 
-include $(srcdir)/Modules.am
+LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
 
-if HAVE_PLUGINS
-LTLIBVLC = $(top_builddir)/src/libvlc.la
+# Module name from object or executable file name.
+MODULE_NAME = `p="$@"; p="$${p\#\#*/}"; p="$${p\#lib}"; echo "$${p%_plugin*}"`
 
-AM_LDFLAGS = -rpath '$(libvlcdir)' \
-       -avoid-version -module -no-undefined \
-       -shrext $(LIBEXT)
-if HAVE_COMPILER_EXPORT
-AM_LDFLAGS += -export-dynamic
-else
-AM_LDFLAGS += -export-symbol-regex ^vlc_entry
-endif
-AM_LIBADD = $(LTLIBVLC)
+AM_CPPFLAGS = \
+       -DMODULE_NAME=$(MODULE_NAME) \
+       -DMODULE_NAME_IS_$(MODULE_NAME) \
+       -DMODULE_STRING=\"$(MODULE_NAME)\"
+if HAVE_DYNAMIC_PLUGINS
+AM_CPPFLAGS += -D__PLUGIN__
 endif
+AM_CFLAGS =
+AM_CXXFLAGS =
+AM_OBJCFLAGS =
+AM_LDFLAGS = -rpath '$(libvlcdir)' \
+       -avoid-version -module \
+       -export-symbols-regex ^vlc_entry \
+       -shrext $(LIBEXT) \
+       -no-undefined
+AM_LIBADD = $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la $(LIBS_plugin)
 
-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"
-
-# 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
+include $(srcdir)/Modules.am
 
 if MAINTAINER_MODE
 $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
-       cd \$(top_srcdir) && \$(SHELL) modules/genmf ${dir}
+       $(AM_V_GEN)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
-