Mercurial > mplayer.hg
annotate libaf/Makefile @ 21299:b15a8a2dca6f
Remove superfluous dependency declaration on real header files.
author | diego |
---|---|
date | Mon, 27 Nov 2006 11:31:25 +0000 |
parents | 92b122592776 |
children | ef59ac68c9b6 |
rev | line source |
---|---|
19034 | 1 include ../config.mak |
7568 | 2 |
3 LIBNAME = libaf.a | |
4 | |
15772 | 5 SRCS=af.c \ |
6 af_center.c \ | |
7 af_channels.c \ | |
8 af_comp.c \ | |
9 af_delay.c \ | |
10 af_dummy.c \ | |
11 af_equalizer.c \ | |
12 af_export.c \ | |
13 af_extrastereo.c \ | |
14 af_format.c \ | |
15 af_gate.c \ | |
16 af_hrtf.c \ | |
18470 | 17 af_karaoke.c \ |
15772 | 18 af_pan.c \ |
19 af_resample.c \ | |
18611
1c2f694d5232
Rename sinesupress to sinesuppress, including af_sinesupress.c file rename.
corey
parents:
18470
diff
changeset
|
20 af_sinesuppress.c \ |
15772 | 21 af_sub.c \ |
22 af_surround.c \ | |
23 af_sweep.c \ | |
24 af_tools.c \ | |
25 af_volnorm.c \ | |
26 af_volume.c \ | |
27 filter.c \ | |
28 format.c \ | |
29 window.c \ | |
19034 | 30 $(AF_SRCS) \ |
7568 | 31 |
16168
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
32 ifeq ($(CONFIG_LIBAVUTIL),yes) |
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
33 LIBAV_INC += -I../libavutil |
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
34 endif |
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
35 ifeq ($(CONFIG_LIBAVCODEC),yes) |
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
36 LIBAV_INC += -I../libavcodec |
17522
2408715522a7
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
37 SRCS+=af_lavcresample.c |
2408715522a7
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
38 endif |
2408715522a7
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
39 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
2408715522a7
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
40 SRCS+=af_lavcresample.c |
16168
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
41 endif |
99c188fbdba4
libavutil compile fix (working also with old libavcodec)
reimar
parents:
15772
diff
changeset
|
42 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
43 CFLAGS = -I.. $(LIBAV_INC) -D_GNU_SOURCE |
9770 | 44 |
12706 | 45 ifeq ($(TARGET_OS),MINGW32) |
9770 | 46 CFLAGS += -D_IO_H_ |
47 endif | |
48 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
49 include ../mpcommon.mak |