Mercurial > mplayer.hg
diff Makefile @ 18937:9e95ac641e77
Initial libass release (without mencoder support).
author | eugeni |
---|---|
date | Fri, 07 Jul 2006 18:26:51 +0000 |
parents | 79efd1a9347d |
children | a670787e51af |
line wrap: on
line diff
--- a/Makefile Fri Jul 07 18:07:39 2006 +0000 +++ b/Makefile Fri Jul 07 18:26:51 2006 +0000 @@ -82,6 +82,12 @@ VO_LIBS += $(EXTERNAL_VIDIX_LIB) endif +ASS_LIB = + +ifeq ($(CONFIG_ASS),yes) +ASS_LIB += libass/libass.a +endif + AO_LIBS = $(ARTS_LIB) \ $(ESD_LIB) \ $(JACK_LIB) \ @@ -113,6 +119,7 @@ $(W32_LIB) \ libaf/libaf.a \ libmpdemux/libmpdemux.a \ + $(ASS_LIB) \ libswscale/libswscale.a \ osdep/libosdep.a \ $(DVDREAD_LIB) \ @@ -254,6 +261,10 @@ ifeq ($(DVDKIT2),yes) COMMON_DEPS += libmpdvdkit2/libmpdvdkit.a endif +ifeq ($(CONFIG_ASS),yes) +COMMON_DEPS += libass/libass.a +PARTS += libass +endif ifeq ($(GUI),yes) COMMON_DEPS += Gui/libgui.a @@ -281,6 +292,9 @@ libfame/libfame.a: $(MAKE) -C libfame +libass/libass.a: + $(MAKE) -C libass + libmpdemux/libmpdemux.a: $(MAKE) -C libmpdemux @@ -601,6 +615,8 @@ vidix/libvidix.a: $(wildcard vidix/*.[ch]) Gui/libgui.a: $(wildcard Gui/*.[ch] Gui/*/*.[ch] Gui/*/*/*.[ch]) +libass/libass.a: $(wildcard libass/*.[ch]) + # # include dependency files if they exist #