vlc/modules/Makefile.am

62 lines
1.2 KiB
Makefile
Raw Normal View History

noinst_LTLIBRARIES =
BASE_SUBDIRS = \
access \
audio_filter \
audio_mixer \
audio_output \
codec \
control \
demux \
gui \
meta_engine \
misc \
2011-08-04 20:17:54 +08:00
notify \
packetizer \
services_discovery \
stream_filter \
2011-08-04 20:10:13 +08:00
text_renderer \
video_chroma \
video_filter \
video_output \
video_splitter \
visualization
EXTRA_SUBDIRS = \
access_output \
mux \
stream_out \
arm_neon \
hw/vdpau \
lua
SUBDIRS = . $(BASE_SUBDIRS)
DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
if ENABLE_SOUT
2008-04-29 04:13:39 +08:00
SUBDIRS += access_output mux stream_out
endif
if HAVE_NEON
SUBDIRS += arm_neon
endif
if HAVE_VDPAU
SUBDIRS += hw/vdpau
endif
if BUILD_LUA
SUBDIRS += lua
endif
dist_noinst_SCRIPTS = genmf list.sh module.rc.in
dist_noinst_DATA = LIST
libvlc_pulse_la_SOURCES = vlcpulse.c vlcpulse.h
libvlc_pulse_la_CPPFLAGS = -DMODULE_STRING=\"pulse\"
libvlc_pulse_la_CFLAGS = $(AM_CFLAGS) $(PULSE_CFLAGS)
libvlc_pulse_la_LDFLAGS = -static
libvlc_pulse_la_LIBADD = $(AM_LIBADD) $(PULSE_LIBS)
if HAVE_PULSE
noinst_LTLIBRARIES += libvlc_pulse.la
endif
if HAVE_WIN32
module.rc: $(top_builddir)/modules/module.rc.in $(top_builddir)/config.status
$(AM_V_GEN) cd "$(top_builddir)" && $(SHELL) ./config.status --file="modules/$@"
endif