comparison libmpeg2/Makefile @ 17943:c127ce678083

cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines to ease patching in the future.
author diego
date Sat, 25 Mar 2006 10:38:37 +0000
parents ce1ba8fd57e7
children 7a9a9748e045
comparison
equal deleted inserted replaced
17942:f2868534283d 17943:c127ce678083
1 1
2 LIBNAME = libmpeg2.a 2 LIBNAME = libmpeg2.a
3 3
4 include ../config.mak 4 include ../config.mak
5 5
6 SRCS = alloc.c cpu_accel.c cpu_state.c decode.c header.c idct.c motion_comp.c slice.c 6 SRCS = alloc.c \
7 cpu_accel.c\
8 cpu_state.c \
9 decode.c \
10 header.c \
11 idct.c \
12 motion_comp.c \
13 slice.c \
7 14
8 OBJS = $(SRCS:.c=.o) 15 OBJS = $(SRCS:.c=.o)
9 INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC) 16 INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC)
10 CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY 17 CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY
11 18