Mercurial > mplayer.hg
view libass/Makefile @ 21231:1a963c0b58c5
Remove nonexistent variable.
author | diego |
---|---|
date | Sat, 25 Nov 2006 19:19:36 +0000 |
parents | 0c68d02f437c |
children | 92b122592776 |
line wrap: on
line source
include ../config.mak LIBNAME=libass.a SRCS = ass.c \ ass_cache.c \ ass_fontconfig.c \ ass_render.c \ ass_utils.c \ ass_mp.c \ ass_bitmap.c \ ass_library.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: $(LIBNAME) $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) clean: rm -f *.o *.a *~ distclean: clean rm -f .depend dep depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend ifneq ($(wildcard .depend),) include .depend endif