[MPlayer-cvslog] CVS: main/libmpcodecs Makefile,1.150,1.151

Diego Biurrun CVS syncmail at mplayerhq.hu
Mon Sep 19 17:23:18 CEST 2005


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv11051/libmpcodecs

Modified Files:
	Makefile 
Log Message:
Break up all long lines that were missed during the last reformatting round.


Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/Makefile,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- Makefile	19 Sep 2005 15:12:38 -0000	1.150
+++ Makefile	19 Sep 2005 15:23:15 -0000	1.151
@@ -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
 




More information about the MPlayer-cvslog mailing list