Mercurial > mplayer.hg
annotate liba52/Makefile @ 22739:25586323a128
Include stdlib.h and string.h to fix the following warnings:
bmovl-test.c:22: warning: implicit declaration of function `strlen'
bmovl-test.c:64: warning: implicit declaration of function `exit'
bmovl-test.c:67: warning: implicit declaration of function `atoi'
bmovl-test.c:89: warning: implicit declaration of function `malloc'
bmovl-test.c:114: warning: implicit declaration of function `free'
author | diego |
---|---|
date | Tue, 20 Mar 2007 01:11:55 +0000 |
parents | 099a3c8158dd |
children | afb7111123bb |
rev | line source |
---|---|
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
1 include ../config.mak |
3407 | 2 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21293
diff
changeset
|
3 LIBNAME_COMMON = liba52.a |
3407 | 4 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
21293
diff
changeset
|
5 SRCS_COMMON = crc.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
6 resample.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
7 bit_allocate.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
8 bitstream.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
9 downmix.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
10 imdct.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
11 parse.c \ |
17943
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17488
diff
changeset
|
12 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
13 include ../mpcommon.mak |
3407 | 14 |
22538 | 15 test: test.c ../osdep/libosdep.a $(LIBNAME_COMMON) |
16 $(CC) $(CFLAGS) -o $@ $^ -lm | |
3407 | 17 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
18 distclean:: |
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
19 rm -f test |