]> git.sesse.net Git - vlc/blob - modules/common.am
Install and look for plugins in plugins/, not modules/ (fixes: #3352)
[vlc] / modules / common.am
1 # Common code for VLC modules/.../Makefile.am
2 #
3 # Copyright (C) 2005-2007 the VideoLAN team
4 # Copyright (C) 2005-2008 RĂ©mi Denis-Courmont
5 #
6 # Authors: Sam Hocevar <sam@zoy.org>
7
8 NULL =
9 SUFFIXES =
10 libvlcdir = $(vlclibdir)/plugins/$(basedir)
11 EXTRA_DIST = Modules.am
12 BUILT_SOURCES =
13 CLEANFILES = $(BUILT_SOURCES)
14
15 LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
16
17 AM_CFLAGS = `$(VLC_CONFIG) --cflags plugin $@`
18 AM_CXXFLAGS = `$(VLC_CONFIG) --cxxflags plugin $@`
19 AM_OBJCFLAGS = `$(VLC_CONFIG) --objcflags plugin $@`
20 AM_LDFLAGS = -rpath '$(libvlcdir)' \
21         -avoid-version -module \
22         -export-symbol-regex ^vlc_entry \
23         -shrext $(LIBEXT) \
24         -rpath "$(libvlcdir)" \
25         -no-undefined \
26          `$(VLC_CONFIG) --ldflags plugin $@`
27 AM_LIBADD = `$(VLC_CONFIG) -libs plugin $@` \
28         $(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la
29
30 include $(srcdir)/Modules.am
31
32 if MAINTAINER_MODE
33 $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
34         $(AM_V_GEN)cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
35 endif