2013-09-14 03:49:42 +08:00
|
|
|
noinst_LTLIBRARIES =
|
2013-09-16 03:23:10 +08:00
|
|
|
noinst_HEADERS =
|
2013-09-16 04:20:24 +08:00
|
|
|
|
2008-05-11 01:16:58 +08:00
|
|
|
BASE_SUBDIRS = \
|
2013-09-16 00:54:25 +08:00
|
|
|
access/rtp \
|
2008-03-24 03:53:10 +08:00
|
|
|
audio_filter \
|
|
|
|
audio_mixer \
|
|
|
|
audio_output \
|
|
|
|
control \
|
|
|
|
gui \
|
|
|
|
meta_engine \
|
|
|
|
misc \
|
2011-08-04 20:17:54 +08:00
|
|
|
notify \
|
2008-03-24 03:53:10 +08:00
|
|
|
packetizer \
|
|
|
|
services_discovery \
|
2008-12-10 03:12:04 +08:00
|
|
|
stream_filter \
|
2011-08-04 20:10:13 +08:00
|
|
|
text_renderer \
|
2008-03-24 03:53:10 +08:00
|
|
|
video_chroma \
|
|
|
|
video_filter \
|
|
|
|
video_output \
|
2013-07-21 22:01:56 +08:00
|
|
|
video_splitter \
|
2008-03-24 03:53:10 +08:00
|
|
|
visualization
|
2008-04-29 04:04:33 +08:00
|
|
|
EXTRA_SUBDIRS = \
|
2008-04-29 04:08:20 +08:00
|
|
|
access_output \
|
2008-04-29 04:04:33 +08:00
|
|
|
mux \
|
2010-01-10 18:34:38 +08:00
|
|
|
stream_out \
|
2010-01-10 23:47:34 +08:00
|
|
|
arm_neon \
|
2013-06-13 23:40:05 +08:00
|
|
|
hw/vdpau \
|
2013-09-14 03:49:42 +08:00
|
|
|
lua
|
2008-05-11 01:16:58 +08:00
|
|
|
|
2013-09-14 03:49:42 +08:00
|
|
|
SUBDIRS = . $(BASE_SUBDIRS)
|
|
|
|
DIST_SUBDIRS = . $(BASE_SUBDIRS) $(EXTRA_SUBDIRS)
|
2008-04-29 04:04:33 +08:00
|
|
|
if ENABLE_SOUT
|
2008-04-29 04:13:39 +08:00
|
|
|
SUBDIRS += access_output mux stream_out
|
2008-04-29 04:04:33 +08:00
|
|
|
endif
|
2011-07-05 02:14:18 +08:00
|
|
|
if HAVE_NEON
|
2010-01-10 23:47:34 +08:00
|
|
|
SUBDIRS += arm_neon
|
|
|
|
endif
|
2013-06-13 23:40:05 +08:00
|
|
|
if HAVE_VDPAU
|
|
|
|
SUBDIRS += hw/vdpau
|
|
|
|
endif
|
2011-02-21 01:27:46 +08:00
|
|
|
if BUILD_LUA
|
|
|
|
SUBDIRS += lua
|
|
|
|
endif
|
2008-04-29 04:04:33 +08:00
|
|
|
|
2013-08-01 23:02:52 +08:00
|
|
|
dist_noinst_SCRIPTS = genmf list.sh module.rc.in
|
2008-03-24 03:53:10 +08:00
|
|
|
dist_noinst_DATA = LIST
|
2013-08-01 23:02:52 +08:00
|
|
|
|
2013-09-14 03:49:42 +08:00
|
|
|
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
|
2013-09-15 23:47:01 +08:00
|
|
|
libvlc_pulse_la_LIBADD = $(PULSE_LIBS)
|
2013-09-14 03:49:42 +08:00
|
|
|
if HAVE_PULSE
|
|
|
|
noinst_LTLIBRARIES += libvlc_pulse.la
|
|
|
|
endif
|
|
|
|
|
2013-09-16 00:54:25 +08:00
|
|
|
include common.am
|
|
|
|
include access/Makefile.am
|
2013-09-16 03:23:10 +08:00
|
|
|
include codec/Makefile.am
|
2013-09-16 04:20:24 +08:00
|
|
|
include demux/Makefile.am
|
|
|
|
|
|
|
|
BUILT_SOURCES += dummy.cpp
|
|
|
|
|
|
|
|
dummy.cpp:
|
|
|
|
touch dummy.cpp
|
2013-09-16 00:54:25 +08:00
|
|
|
|
2013-08-01 23:02:52 +08:00
|
|
|
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
|