comparison tremor/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 = libvorbisidec.a 2 LIBNAME = libvorbisidec.a
3 3
4 include ../config.mak 4 include ../config.mak
5 5
6 SRCS = bitwise.c block.c codebook.c floor0.c floor1.c framing.c info.c \ 6 SRCS = bitwise.c \
7 mapping0.c mdct.c registry.c res012.c sharedbook.c synthesis.c window.c 7 block.c \
8 codebook.c \
9 floor0.c \
10 floor1.c \
11 framing.c \
12 info.c \
13 mapping0.c \
14 mdct.c \
15 registry.c \
16 res012.c \
17 sharedbook.c \
18 synthesis.c \
19 window.c \
8 20
9 OBJS = $(SRCS:.c=.o) 21 OBJS = $(SRCS:.c=.o)
10 INCLUDE = -I. -I.. $(EXTRA_INC) 22 INCLUDE = -I. -I.. $(EXTRA_INC)
11 CFLAGS = $(OPTFLAGS) $(INCLUDE) $(TREMOR_FLAGS) 23 CFLAGS = $(OPTFLAGS) $(INCLUDE) $(TREMOR_FLAGS)
12 24