view mpcommon.mak @ 22138:9fadbbd19a04

r22129: Link to the mencoder-users list for mencoder stuff r22140: vp6vfw.dll appears to no longer crash under Linux. r22141: Move all "Encoding with the XXX codec family" sections together.
author voroshil
date Mon, 05 Feb 2007 18:38:25 +0000
parents cc925b0d1335
children 068c5141bff6
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)
$(LIBNAME2): $(OBJS2)
$(LIBNAME) $(LIBNAME2):
	$(AR) r $@ $^
	$(RANLIB) $@

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

distclean:: clean
	rm -f .depend

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

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