2008-04-22 01:42:38 +08:00
|
|
|
# Common code for VLC modules/.../Makefile.am
|
|
|
|
#
|
|
|
|
# Copyright (C) 2005-2007 the VideoLAN team
|
|
|
|
# Copyright (C) 2005-2008 Rémi Denis-Courmont
|
|
|
|
#
|
|
|
|
# Authors: Sam Hocevar <sam@zoy.org>
|
|
|
|
|
|
|
|
NULL =
|
2008-04-22 02:54:50 +08:00
|
|
|
SUFFIXES =
|
2008-04-22 01:42:38 +08:00
|
|
|
libvlcdir = $(libdir)/vlc/$(basedir)
|
|
|
|
libvlc_LTLIBRARIES =
|
|
|
|
EXTRA_DIST = Modules.am
|
|
|
|
BUILT_SOURCES =
|
|
|
|
CLEANFILES =
|
|
|
|
|
|
|
|
include $(srcdir)/Modules.am
|
|
|
|
|
|
|
|
if HAVE_PLUGINS
|
|
|
|
LTLIBVLC = $(top_builddir)/src/libvlc.la
|
|
|
|
|
2008-04-22 02:48:43 +08:00
|
|
|
AM_CFLAGS = `$(VLC_CONFIG) --cflags plugin $@`
|
|
|
|
AM_CXXFLAGS = `$(VLC_CONFIG) --cxxflags plugin $@`
|
|
|
|
AM_OBJCFLAGS = `$(VLC_CONFIG) --objcflags plugin $@`
|
2008-04-22 01:42:38 +08:00
|
|
|
AM_LDFLAGS = -rpath '$(libvlcdir)' \
|
|
|
|
-avoid-version -module -no-undefined \
|
2008-04-22 02:48:43 +08:00
|
|
|
-shrext $(LIBEXT) \
|
|
|
|
`$(VLC_CONFIG) --ldflags plugin $@`
|
|
|
|
AM_LIBADD = $(LTLIBVLC)
|
|
|
|
|
2008-04-22 01:42:38 +08:00
|
|
|
if HAVE_COMPILER_EXPORT
|
|
|
|
AM_LDFLAGS += -export-dynamic
|
|
|
|
else
|
|
|
|
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
|
2008-04-22 03:04:35 +08:00
|
|
|
cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
|
2008-04-22 01:42:38 +08:00
|
|
|
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
|
|
|
|
|