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.
75 lines
2.0 KiB
75 lines
2.0 KiB
SUBDIRS = msw qte x11
|
|
# Automake forgets to add a proper tag to libtool with Objective-C files.
|
|
# Moreocer Libtool should default tag to CC when none is specified but
|
|
# obviously does not. Here is a fix for that.
|
|
LIBTOOL=@LIBTOOL@ --tag=CC
|
|
|
|
SOURCES_aa = aa.c
|
|
SOURCES_caca = caca.c
|
|
SOURCES_fb = fb.c
|
|
SOURCES_omapfb = omapfb.c
|
|
SOURCES_ggi = ggi.c
|
|
SOURCES_vout_sdl = sdl.c
|
|
SOURCES_svgalib = svgalib.c
|
|
SOURCES_mga = mga.c
|
|
SOURCES_hd1000v = hd1000v.cpp
|
|
SOURCES_snapshot = snapshot.c
|
|
SOURCES_opengl = opengl.c
|
|
SOURCES_opengllayer = opengllayer.m
|
|
SOURCES_directfb = directfb.c
|
|
SOURCES_vmem = vmem.c
|
|
SOURCES_yuv = yuv.c
|
|
SOURCES_vout_wrapper = wrapper.c
|
|
|
|
libxcb_plugin_la_SOURCES = \
|
|
xcb/xcb_vlc.h \
|
|
xcb/x11.c \
|
|
xcb/common.c \
|
|
xcb/events.c
|
|
libxcb_plugin_la_CFLAGS = $(AM_CFLAGS) \
|
|
$(XCB_CFLAGS) $(XCB_SHM_CFLAGS) \
|
|
$(XPROTO_CFLAGS)
|
|
libxcb_plugin_la_LIBADD = $(AM_LIBADD) \
|
|
$(XCB_LIBS) $(XCB_SHM_LIBS) \
|
|
$(XPROTO_LIBS)
|
|
libxcb_plugin_la_DEPENDENCIES =
|
|
|
|
libxcb_xv_plugin_la_SOURCES = \
|
|
xcb/xcb_vlc.h \
|
|
xcb/xvideo.c \
|
|
xcb/common.c \
|
|
xcb/events.c
|
|
libxcb_xv_plugin_la_CFLAGS = $(AM_CFLAGS) \
|
|
$(XCB_CFLAGS) $(XCB_SHM_CFLAGS) $(XCB_XV_CFLAGS) \
|
|
$(XPROTO_CFLAGS)
|
|
libxcb_xv_plugin_la_LIBADD = $(AM_LIBADD) \
|
|
$(XCB_LIBS) $(XCB_SHM_LIBS) $(XCB_XV_LIBS) \
|
|
$(XPROTO_LIBS)
|
|
libxcb_xv_plugin_la_DEPENDENCIES =
|
|
|
|
libxcb_window_plugin_la_SOURCES = xcb/window.c xcb/keys.c
|
|
libxcb_window_plugin_la_CFLAGS = $(AM_CFLAGS) \
|
|
$(XCB_CFLAGS) \
|
|
$(XCB_AUX_CFLAGS) $(XCB_KEYSYMS_CFLAGS)
|
|
libxcb_window_plugin_la_LIBADD = $(AM_LIBADD) \
|
|
$(XCB_LIBS) \
|
|
$(XCB_AUX_LIBS) $(XCB_KEYSYMS_LIBS)
|
|
libxcb_window_plugin_la_DEPENDENCIES =
|
|
|
|
EXTRA_LTLIBRARIES += \
|
|
libxcb_plugin.la \
|
|
libxcb_xv_plugin.la \
|
|
libxcb_window_plugin.la
|
|
libvlc_LTLIBRARIES += \
|
|
$(LTLIBxcb) \
|
|
$(LTLIBxcb_xv) \
|
|
$(LTLIBxcb_window)
|
|
|
|
# XXX: do we need yet another modules/ subdirectory?
|
|
libdrawable_plugin_la_SOURCES = drawable.c
|
|
libdrawable_plugin_la_CFLAGS = $(AM_CFLAGS)
|
|
libdrawable_plugin_la_LIBADD = $(AM_LIBADD)
|
|
libdrawable_plugin_la_DEPENDENCIES =
|
|
libvlc_LTLIBRARIES += libdrawable_plugin.la
|
|
|
|
libvlc_LTLIBRARIES += libvout_wrapper_plugin.la
|
|
|