view mpcommon.mak @ 21384:64caf9117fe1

r21367: If a glyph is not found in the current font, switch to another one.
author voroshil
date Thu, 30 Nov 2006 15:49:30 +0000
parents c74dbfe68bb3
children fd1495e1538d
line wrap: on
line source

SRCS         += $(SRCS-yes)
SRCS2        += $(SRCS2-yes)
LIBAV_INC    += $(LIBAV_INC-yes)

OBJS  = $(addsuffix .o, $(basename $(SRCS)) )
OBJS2 = $(addsuffix .o, $(basename $(SRCS2)) )

CFLAGS += -I. -I.. $(OPTFLAGS)

.SUFFIXES: .c .o

.c.o:
	$(CC) -c $(CFLAGS) -o $@ $<

LIBS = $(LIBNAME) $(LIBNAME2)

all:    $(LIBS)

$(LIBNAME): $(OBJS)
	$(AR) r $@ $^
	$(RANLIB) $@

$(LIBNAME2): $(OBJS2)
	$(AR) r $@ $^
	$(RANLIB) $@

clean::
	rm -f *.o *.a *~

distclean:: clean
	rm -f .depend

dep depend:
	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend

ifneq ($(wildcard .depend),)
include .depend
endif