vlc/modules/Makefile.am

86 lines
1.8 KiB
Makefile
Raw Normal View History

noinst_LTLIBRARIES =
2013-09-16 03:23:10 +08:00
noinst_HEADERS =
2013-09-28 22:37:32 +08:00
check_PROGRAMS =
EXTRA_DIST =
2013-09-16 04:20:24 +08:00
BASE_SUBDIRS = \
audio_filter \
control \
gui \
packetizer \
2011-08-04 20:10:13 +08:00
text_renderer \
video_filter \
visualization
EXTRA_SUBDIRS = \
access_output \
mux \
stream_out \
hw/mmal
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_MMAL
SUBDIRS += hw/mmal
endif
2013-09-28 22:37:32 +08:00
TESTS =
dist_noinst_SCRIPTS = genmf list.sh module.rc.in
dist_noinst_DATA = MODULES_LIST
EXTRA_LTLIBRARIES =
include common.am
include access/Makefile.am
2013-09-28 22:37:32 +08:00
include access/rtp/Makefile.am
2013-09-28 20:55:22 +08:00
include arm_neon/Makefile.am
2013-09-28 20:58:11 +08:00
include audio_mixer/Makefile.am
2013-09-22 21:15:14 +08:00
include audio_output/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
2013-09-28 21:15:58 +08:00
include hw/vdpau/Makefile.am
include logger/Makefile.am
2013-09-28 21:03:13 +08:00
include lua/Makefile.am
include meta_engine/Makefile.am
2014-10-06 23:39:33 +08:00
include misc/Makefile.am
2013-09-28 21:04:54 +08:00
include notify/Makefile.am
2013-09-22 21:38:22 +08:00
include services_discovery/Makefile.am
2013-09-28 21:06:40 +08:00
include stream_filter/Makefile.am
2013-09-28 21:13:48 +08:00
include video_chroma/Makefile.am
2013-09-28 21:14:44 +08:00
include video_splitter/Makefile.am
include video_output/Makefile.am
2013-09-16 04:20:24 +08:00
BUILT_SOURCES += dummy.cpp
dummy.cpp:
touch dummy.cpp
if HAVE_WIN32
2013-09-16 23:53:55 +08:00
BUILT_SOURCES += module.rc.lo
CLEANFILES += module.rc
#noinst_DATA = module.rc.lo
module.rc: module.rc.in $(top_builddir)/config.status
$(AM_V_GEN) cd "$(top_builddir)" && $(SHELL) ./config.status --file="modules/$@"
2013-09-16 23:53:55 +08:00
module.rc.lo: module.rc
$(AM_V_GEN) $(LIBTOOL) --tag=RC --mode=compile $(WINDRES) \
--include-dir $(top_srcdir)/share \
--include-dir $(top_srcdir)/extras/package/win32 \
-i $< -o $@
echo HELLO
endif
# Wayland
SUFFIXES += -client-protocol.h -protocol.c .xml
.xml-client-protocol.h:
$(AM_V_GEN)$(WAYLAND_SCANNER) client-header < "$^" > "$@.tmp"
$(AM_V_at)mv -f -- "$@.tmp" "$@"
.xml-protocol.c:
$(AM_V_GEN)$(WAYLAND_SCANNER) code < "$^" > "$@.tmp"
$(AM_V_at)mv -f -- "$@.tmp" "$@"