summaryrefslogtreecommitdiff
path: root/src/dxr3
diff options
context:
space:
mode:
Diffstat (limited to 'src/dxr3')
-rw-r--r--src/dxr3/Makefile.am22
1 files changed, 18 insertions, 4 deletions
diff --git a/src/dxr3/Makefile.am b/src/dxr3/Makefile.am
index 6d75ccbcd..966048bc5 100644
--- a/src/dxr3/Makefile.am
+++ b/src/dxr3/Makefile.am
@@ -1,11 +1,13 @@
-CFLAGS = @CFLAGS@ $(X_CFLAGS)
+AM_CFLAGS = @CFLAGS@ $(X_CFLAGS)
LIBTOOL = $(SHELL) $(top_builddir)/libtool-nofpic
libdir = $(XINE_PLUGINDIR)
if HAVE_DXR3
-dxr3_modules = xineplug_decode_dxr3_video.la xineplug_decode_dxr3_spu.la xineplug_vo_out_dxr3.la
+dxr3_modules = xineplug_decode_dxr3_video.la \
+ xineplug_decode_dxr3_spu.la \
+ xineplug_vo_out_dxr3.la
endif
if HAVE_X11
link_x_libs = $(X_LIBS) -lXext
@@ -27,12 +29,24 @@ xineplug_decode_dxr3_spu_la_SOURCES = dxr3_decode_spu.c nav_read.c
xineplug_decode_dxr3_spu_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la
xineplug_decode_dxr3_spu_la_LDFLAGS = -avoid-version -module
-xineplug_vo_out_dxr3_la_SOURCES = video_out_dxr3.c dxr3_mpeg_encoders.c alphablend.c dxr3_spu_encoder.c
+xineplug_vo_out_dxr3_la_SOURCES = \
+ alphablend.c \
+ dxr3_mpeg_encoders.c \
+ dxr3_spu_encoder.c \
+ video_out_dxr3.c
+
xineplug_vo_out_dxr3_la_LIBADD = $(link_fame) $(link_rte) $(link_x_libs) \
$(top_builddir)/src/xine-utils/libxineutils.la
xineplug_vo_out_dxr3_la_LDFLAGS = -avoid-version -module
-noinst_HEADERS = dxr3.h dxr3_scr.h video_out_dxr3.h nav_types.h nav_read.h alphablend.h bswap.h
+noinst_HEADERS = \
+ alphablend.h \
+ bswap.h \
+ dxr3.h \
+ dxr3_scr.h \
+ nav_read.h \
+ nav_types.h \
+ video_out_dxr3.h
debug:
@$(MAKE) CFLAGS="$(DEBUG_CFLAGS)"