changeset 16521:3636c18a1b5e

Break up all long lines that were missed during the last reformatting round.
author diego
date Mon, 19 Sep 2005 15:23:15 +0000
parents 8369ff5711de
children 49ef03cb382a
files libmpcodecs/Makefile
diffstat 1 files changed, 26 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/Makefile	Mon Sep 19 15:12:38 2005 +0000
+++ b/libmpcodecs/Makefile	Mon Sep 19 15:23:15 2005 +0000
@@ -29,7 +29,11 @@
                ad_realaud.c \
                ad_twin.c \
 
-AUDIO_SRCS=dec_audio.c ad.c $(AUDIO_SRCS_LIB) $(AUDIO_SRCS_NAT) $(AUDIO_SRCS_OPT)
+AUDIO_SRCS=dec_audio.c \
+           ad.c \
+           $(AUDIO_SRCS_LIB) \
+           $(AUDIO_SRCS_NAT) \
+           $(AUDIO_SRCS_OPT) \
 
 VIDEO_SRCS_LIB=vd_libmpeg2.c \
                vd_lzo.c \
@@ -58,7 +62,11 @@
                vd_xvid.c \
                vd_zrmjpeg.c \
 
-VIDEO_SRCS=dec_video.c vd.c $(VIDEO_SRCS_NAT) $(VIDEO_SRCS_LIB) $(VIDEO_SRCS_OPT)
+VIDEO_SRCS=dec_video.c \
+           vd.c \
+           $(VIDEO_SRCS_NAT) \
+           $(VIDEO_SRCS_LIB) \
+           $(VIDEO_SRCS_OPT) \
 
 VFILTER_SRCS=vf.c \
              pullup.c \
@@ -205,13 +213,27 @@
 ENCODER_SRCS += ae_faac.c
 endif
 
-SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) $(NATIVE_SRCS) img_format.c
+SRCS=$(AUDIO_SRCS) \
+     $(VIDEO_SRCS) \
+     $(VFILTER_SRCS) \
+     $(NATIVE_SRCS) \
+     img_format.c \
+
 OBJS=$(SRCS:.c=.o)
 
 SRCS2=$(ENCODER_SRCS)
 OBJS2=$(SRCS2:.c=.o)
 
-CFLAGS  = $(OPTFLAGS) -I. -Inative -I.. -I../libmpdemux -I../loader $(LIBAV_INC) $(EXTRA_INC) $(X264_INC) $(XVID_INC) -D_GNU_SOURCE
+CFLAGS  = $(OPTFLAGS) \
+          -I. -I.. \
+          -Inative \
+          -I../libmpdemux \
+          -I../loader \
+          $(LIBAV_INC) \
+          $(EXTRA_INC) \
+          $(X264_INC) \
+          $(XVID_INC) \
+          -D_GNU_SOURCE \
 
 .SUFFIXES: .c .o