# HG changeset patch # User diego # Date 1127143395 0 # Node ID 3636c18a1b5e7b30991b5156d523ee278d5588e1 # Parent 8369ff5711de5ce82a7b669c394944b3ecee2914 Break up all long lines that were missed during the last reformatting round. diff -r 8369ff5711de -r 3636c18a1b5e libmpcodecs/Makefile --- 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