1
mirror of https://github.com/mpv-player/mpv synced 2024-07-27 17:48:22 +02:00
mpv/libaf/Makefile
reimar f4b7a0e4d1 Get rid on -DGNU_SOURCE for internal code, imported libs should be fixed
ASAP, too, though


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21604 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-12-12 20:29:30 +00:00

43 lines
801 B
Makefile

include ../config.mak
LIBNAME = libaf.a
SRCS=af.c \
af_center.c \
af_channels.c \
af_comp.c \
af_delay.c \
af_dummy.c \
af_equalizer.c \
af_export.c \
af_extrastereo.c \
af_format.c \
af_gate.c \
af_hrtf.c \
af_karaoke.c \
af_pan.c \
af_resample.c \
af_sinesuppress.c \
af_sub.c \
af_surround.c \
af_sweep.c \
af_tools.c \
af_volnorm.c \
af_volume.c \
filter.c \
format.c \
window.c \
$(AF_SRCS) \
SRCS-$(CONFIG_LIBAVCODEC) += af_lavcresample.c
SRCS-$(CONFIG_LIBAVCODEC_SO) += af_lavcresample.c
CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil
CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec
ifeq ($(TARGET_OS),MINGW32)
CFLAGS += -D_IO_H_
endif
include ../mpcommon.mak