comparison libaf/Makefile @ 22528:8bcff5c7e387

Give more descriptive names to the source and library variables and split between common, MPlayer-specific and MEncoder-specific parts.
author diego
date Tue, 13 Mar 2007 12:10:57 +0000
parents 490dc8ba9ea4
children 090ec2169aee
comparison
equal deleted inserted replaced
22527:5dc92a83d58a 22528:8bcff5c7e387
1 include ../config.mak 1 include ../config.mak
2 2
3 LIBNAME = libaf.a 3 LIBNAME_COMMON = libaf.a
4 4
5 SRCS=af.c \ 5 SRCS_COMMON = af.c \
6 af_center.c \ 6 af_center.c \
7 af_channels.c \ 7 af_channels.c \
8 af_comp.c \ 8 af_comp.c \
9 af_delay.c \ 9 af_delay.c \
10 af_dummy.c \ 10 af_dummy.c \
27 filter.c \ 27 filter.c \
28 format.c \ 28 format.c \
29 window.c \ 29 window.c \
30 $(AF_SRCS) \ 30 $(AF_SRCS) \
31 31
32 SRCS-$(CONFIG_LIBAVCODEC) += af_lavcresample.c 32 SRCS_COMMON-$(CONFIG_LIBAVCODEC) += af_lavcresample.c
33 SRCS-$(CONFIG_LIBAVCODEC_SO) += af_lavcresample.c 33 SRCS_COMMON-$(CONFIG_LIBAVCODEC_SO) += af_lavcresample.c
34 34
35 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil 35 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil
36 CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec 36 CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec
37 37
38 ifeq ($(TARGET_OS),MINGW32) 38 ifeq ($(TARGET_OS),MINGW32)