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 =
|
2010-03-03 04:07:50 +08:00
|
|
|
libvlcdir = $(vlclibdir)/plugins/$(basedir)
|
2008-04-22 01:42:38 +08:00
|
|
|
EXTRA_DIST = Modules.am
|
|
|
|
BUILT_SOURCES =
|
2008-04-22 03:12:42 +08:00
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
2008-04-22 01:42:38 +08:00
|
|
|
|
2008-05-16 00:40:44 +08:00
|
|
|
LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
|
2008-04-22 01:42:38 +08:00
|
|
|
|
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)' \
|
2008-10-19 22:10:11 +08:00
|
|
|
-avoid-version -module \
|
2008-05-24 15:39:07 +08:00
|
|
|
-export-symbol-regex ^vlc_entry \
|
2008-04-22 02:48:43 +08:00
|
|
|
-shrext $(LIBEXT) \
|
2009-08-06 23:31:19 +08:00
|
|
|
-rpath "$(libvlcdir)" \
|
2009-02-14 20:01:34 +08:00
|
|
|
-no-undefined \
|
2008-04-22 02:48:43 +08:00
|
|
|
`$(VLC_CONFIG) --ldflags plugin $@`
|
2009-04-11 01:14:10 +08:00
|
|
|
AM_LIBADD = `$(VLC_CONFIG) -libs plugin $@` \
|
|
|
|
$(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la
|
2008-04-22 02:48:43 +08:00
|
|
|
|
2008-04-29 03:32:51 +08:00
|
|
|
include $(srcdir)/Modules.am
|
2008-04-22 01:42:38 +08:00
|
|
|
|
|
|
|
if MAINTAINER_MODE
|
|
|
|
$(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
|
2010-02-15 04:26:02 +08:00
|
|
|
$(AM_V_GEN)cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
|
2008-04-22 01:42:38 +08:00
|
|
|
endif
|