view libass/Makefile @ 21221:7124c26f3db3

Add generic target that allow compiling without any assembler or otherwise architecture specific code (except endiannes of course). Usage example: ./configure --target=generic-linux
author reimar
date Sat, 25 Nov 2006 17:58:33 +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