view libass/Makefile @ 19282:5ff55ce59ab4

Simplify LIVE555 test and make it more consistent with the other tests.
author diego
date Tue, 01 Aug 2006 07:34:32 +0000
parents 1ea5c31932fd
children 4f71ed7cb512
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

OBJS=$(SRCS:.c=.o)

CFLAGS  = $(OPTFLAGS) \
          -I. -I.. \
          -I../libmpcodecs \
          -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