]> git.sesse.net Git - vlc/blob - modules/common.am
Cosmetics
[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 = $(libdir)/vlc/$(basedir)
11 EXTRA_DIST = Modules.am
12 BUILT_SOURCES =
13 CLEANFILES = $(BUILT_SOURCES)
14
15 if HAVE_PLUGINS
16 LTLIBVLC = $(top_builddir)/src/libvlc.la
17
18 AM_CFLAGS = `$(VLC_CONFIG) --cflags plugin $@`
19 AM_CXXFLAGS = `$(VLC_CONFIG) --cxxflags plugin $@`
20 AM_OBJCFLAGS = `$(VLC_CONFIG) --objcflags plugin $@`
21 AM_LDFLAGS = -rpath '$(libvlcdir)' \
22         -avoid-version -module -no-undefined \
23         -shrext $(LIBEXT) \
24          `$(VLC_CONFIG) --ldflags plugin $@`
25 AM_LIBADD = `$(VLC_CONFIG) -libs plugin $@` $(LTLIBVLC)
26
27 if HAVE_COMPILER_EXPORT
28 AM_LDFLAGS += -export-dynamic
29 else
30 AM_LDFLAGS += -export-symbol-regex ^vlc_entry
31 endif
32 endif
33
34 include $(srcdir)/Modules.am
35
36 if MAINTAINER_MODE
37 $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
38         cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
39 endif
40
41 nice:
42         $(top_builddir)/compile