From e15ae9a60043d8d9c1b110607c5059f13ca86421 Mon Sep 17 00:00:00 2001 From: eugeni Date: Fri, 7 Jul 2006 18:26:51 +0000 Subject: Initial libass release (without mencoder support). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18942 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libass/Makefile | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 libass/Makefile (limited to 'libass/Makefile') diff --git a/libass/Makefile b/libass/Makefile new file mode 100644 index 0000000000..0604dd32e2 --- /dev/null +++ b/libass/Makefile @@ -0,0 +1,50 @@ + +include ../config.mak + +LIBNAME=libass.a + +LIBS=$(LIBNAME) + +SRCS=ass.c ass_cache.c ass_fontconfig.c ass_render.c ass_utils.c ass_mp.c + +OBJS=$(SRCS:.c=.o) + +CFLAGS = $(OPTFLAGS) \ + -I. -I.. \ + -I../libmpcodecs \ + $(EXTRA_INC) \ + -D_GNU_SOURCE \ + $(FREETYPE_INC) \ + $(FONTCONFIG_INC) \ + +.SUFFIXES: .c .o + +# .PHONY: all clean + +.c.o: + $(CC) -c $(CFLAGS) -o $@ $< + +all: $(LIBS) + +$(LIBNAME): $(OBJS) + $(AR) r $(LIBNAME) $(OBJS) + $(RANLIB) $(LIBNAME) + +clean: + rm -f *.o *.a *~ + +distclean: clean + rm -f .depend + +dep: depend + +depend: + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + +# +# include dependency files if they exist +# +ifneq ($(wildcard .depend),) +include .depend +endif + -- cgit v1.2.3