Mercurial > mplayer.hg
view libass/Makefile @ 20459:231f139a324d
Partial sync with en/mplayer.1 (2)
zh/mplayer.1 is mainly updated with section of
"DEMUXER/STREAM OPTIONS"
patch by Sheldon Jin (jinsh2 yahoo com)
author | kraymer |
---|---|
date | Fri, 27 Oct 2006 23:13:46 +0000 |
parents | bcc792bfa431 |
children | de4a66d99f41 |
line wrap: on
line source
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 ass_bitmap.c OBJS=$(SRCS:.c=.o) CFLAGS = -I. -I.. \ -I../libmpcodecs \ $(OPTFLAGS) \ -D_GNU_SOURCE \ .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