You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.2 KiB
65 lines
1.2 KiB
noinst_LTLIBRARIES =
|
|
BASE_SUBDIRS = \
|
|
access \
|
|
audio_filter \
|
|
audio_mixer \
|
|
audio_output \
|
|
codec \
|
|
control \
|
|
demux \
|
|
gui \
|
|
meta_engine \
|
|
misc \
|
|
notify \
|
|
packetizer \
|
|
services_discovery \
|
|
stream_filter \
|
|
text_renderer \
|
|
video_chroma \
|
|
video_filter \
|
|
video_output \
|
|
video_splitter \
|
|
visualization
|
|
EXTRA_SUBDIRS = \
|
|
access_output \
|
|
mux \
|
|
stream_out \
|
|
altivec \
|
|
arm_neon \
|
|
hw/vdpau \
|
|
lua
|
|
|
|
SUBDIRS = . $(BASE_SUBDIRS)
|
|
DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
|
|
if ENABLE_SOUT
|
|
SUBDIRS += access_output mux stream_out
|
|
endif
|
|
if HAVE_ALTIVEC
|
|
SUBDIRS += altivec
|
|
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
|
|
|