view mpcommon.mak @ 22075:c604c9a97c35

r22060: describe -psprobe r22061: typo, new sentences on lines of their own r22062: alphabetical order r22074: typo r22075: Document -noidx. r22089: x264's crf takes a float argument
author voroshil
date Wed, 31 Jan 2007 15:28:50 +0000
parents 254e55a37c6d
children 4e79a2f4993f
line wrap: on
line source

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

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

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

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