comparison libmpcodecs/Makefile @ 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 6b1d1e4adaea
comparison
equal deleted inserted replaced
16520:8369ff5711de 16521:3636c18a1b5e
27 ad_libvorbis.c \ 27 ad_libvorbis.c \
28 ad_qtaudio.c \ 28 ad_qtaudio.c \
29 ad_realaud.c \ 29 ad_realaud.c \
30 ad_twin.c \ 30 ad_twin.c \
31 31
32 AUDIO_SRCS=dec_audio.c ad.c $(AUDIO_SRCS_LIB) $(AUDIO_SRCS_NAT) $(AUDIO_SRCS_OPT) 32 AUDIO_SRCS=dec_audio.c \
33 ad.c \
34 $(AUDIO_SRCS_LIB) \
35 $(AUDIO_SRCS_NAT) \
36 $(AUDIO_SRCS_OPT) \
33 37
34 VIDEO_SRCS_LIB=vd_libmpeg2.c \ 38 VIDEO_SRCS_LIB=vd_libmpeg2.c \
35 vd_lzo.c \ 39 vd_lzo.c \
36 vd_nuv.c \ 40 vd_nuv.c \
37 41
56 vd_xanim.c \ 60 vd_xanim.c \
57 vd_xvid4.c \ 61 vd_xvid4.c \
58 vd_xvid.c \ 62 vd_xvid.c \
59 vd_zrmjpeg.c \ 63 vd_zrmjpeg.c \
60 64
61 VIDEO_SRCS=dec_video.c vd.c $(VIDEO_SRCS_NAT) $(VIDEO_SRCS_LIB) $(VIDEO_SRCS_OPT) 65 VIDEO_SRCS=dec_video.c \
66 vd.c \
67 $(VIDEO_SRCS_NAT) \
68 $(VIDEO_SRCS_LIB) \
69 $(VIDEO_SRCS_OPT) \
62 70
63 VFILTER_SRCS=vf.c \ 71 VFILTER_SRCS=vf.c \
64 pullup.c \ 72 pullup.c \
65 vf_1bpp.c \ 73 vf_1bpp.c \
66 vf_2xsai.c \ 74 vf_2xsai.c \
203 211
204 ifeq ($(FAAC),yes) 212 ifeq ($(FAAC),yes)
205 ENCODER_SRCS += ae_faac.c 213 ENCODER_SRCS += ae_faac.c
206 endif 214 endif
207 215
208 SRCS=$(AUDIO_SRCS) $(VIDEO_SRCS) $(VFILTER_SRCS) $(NATIVE_SRCS) img_format.c 216 SRCS=$(AUDIO_SRCS) \
217 $(VIDEO_SRCS) \
218 $(VFILTER_SRCS) \
219 $(NATIVE_SRCS) \
220 img_format.c \
221
209 OBJS=$(SRCS:.c=.o) 222 OBJS=$(SRCS:.c=.o)
210 223
211 SRCS2=$(ENCODER_SRCS) 224 SRCS2=$(ENCODER_SRCS)
212 OBJS2=$(SRCS2:.c=.o) 225 OBJS2=$(SRCS2:.c=.o)
213 226
214 CFLAGS = $(OPTFLAGS) -I. -Inative -I.. -I../libmpdemux -I../loader $(LIBAV_INC) $(EXTRA_INC) $(X264_INC) $(XVID_INC) -D_GNU_SOURCE 227 CFLAGS = $(OPTFLAGS) \
228 -I. -I.. \
229 -Inative \
230 -I../libmpdemux \
231 -I../loader \
232 $(LIBAV_INC) \
233 $(EXTRA_INC) \
234 $(X264_INC) \
235 $(XVID_INC) \
236 -D_GNU_SOURCE \
215 237
216 .SUFFIXES: .c .o 238 .SUFFIXES: .c .o
217 239
218 # .PHONY: all clean 240 # .PHONY: all clean
219 241