Mercurial > mplayer.hg
view vidix/Makefile @ 22546:322fed4ddef2
consistency cosmetics
author | diego |
---|---|
date | Wed, 14 Mar 2007 08:44:16 +0000 |
parents | effb4c7d9c1a |
children | 9193e4b4834f |
line wrap: on
line source
include ../config.mak LIBNAME = libvidix.a SRCS = vidixlib.c OBJS = $(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) all: $(LIBNAME) $(MAKE) -C drivers $(LIBNAME): $(OBJS) $(AR) r $@ $^ $(RANLIB) $@ clean: rm -f *.o *.a *~ $(MAKE) -C drivers clean distclean: clean rm -f .depend test $(MAKE) -C drivers distclean dep depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend $(MAKE) -C drivers depend -include .depend