view mpcommon.mak @ 21318:c012ba4bf229

help messages: r21306: fix compilation for win32 dll codec support for intel osx r21328: localization of parser-m*cmd.c messages r21332: insert line break for overly long line (second line indented) man page: r21221: improve description of x264's deadzone* options r21228: fix typos noticed by Diego r21254: nits and picks by The Wanderer :) r21255: typo in deadzone_inter r21298: "D" interactive key also works with yadif now
author kraymer
date Mon, 27 Nov 2006 17:22:31 +0000
parents 5fdf546b4e57
children c74dbfe68bb3
line wrap: on
line source

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

OBJS  = $(SRCS:.c=.o)
OBJS := $(OBJS:.S=.o)
OBJS := $(OBJS:.cpp=.o)
OBJS := $(OBJS:.m=.o)
OBJS2 = $(SRCS2:.c=.o)

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