Mercurial > mplayer.hg
view mpcommon.mak @ 21646:8a34ed4b5be0
r21651: add missing line break
r21654: add man page entry for new -dvd-speed option
r21656: document hqdn3d and dn3d's 4th parameter
r21659: more sensible names for denoiser options
author | voroshil |
---|---|
date | Sun, 17 Dec 2006 20:51:03 +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