summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile8
-rw-r--r--libao2/Makefile11
2 files changed, 6 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 0f44319cd0..39de8ddcd8 100644
--- a/Makefile
+++ b/Makefile
@@ -111,6 +111,11 @@ SRCS_MPLAYER = mplayer.c \
parser-mpcmd.c \
command.c \
input/input.c \
+ libao2/audio_out.c \
+ libao2/ao_mpegpes.c \
+ libao2/ao_null.c \
+ libao2/ao_pcm.c \
+ $(addprefix libao2/,$(AO_SRCS)) \
SRCS_MPLAYER-$(APPLE_REMOTE) += input/ar.c
SRCS_MPLAYER-$(GUI_GTK) += gui/app.c \
@@ -191,7 +196,6 @@ COMMON_LIBS-$(DVDREAD_INTERNAL) += dvdread/dvdread.a
COMMON_LIBS-$(DVDCSS_INTERNAL) += libdvdcss/libdvdcss.a
LIBS_MPLAYER = libvo/libvo.a \
- libao2/libao2.a \
LIBS_MPLAYER-$(VIDIX) += vidix/vidix.a
@@ -216,7 +220,6 @@ INSTALL_TARGETS += $(INSTALL_TARGETS-yes)
PARTS = dvdread \
liba52 \
- libao2 \
libavcodec \
libavformat \
libavutil \
@@ -244,6 +247,7 @@ DIRS = gui \
gui/win32 \
input \
libaf \
+ libao2 \
libass \
libmenu \
osdep \
diff --git a/libao2/Makefile b/libao2/Makefile
deleted file mode 100644
index d6cf45ccee..0000000000
--- a/libao2/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-include ../config.mak
-
-LIBNAME_MPLAYER = libao2.a
-
-SRCS_MPLAYER = audio_out.c \
- ao_mpegpes.c \
- ao_null.c \
- ao_pcm.c \
- $(AO_SRCS) \
-
-include ../mpcommon.mak