Mercurial > mplayer.hg
view vidix/Makefile @ 22543:1503d29ab0d1
Remove superfluous/obsolete rules and variables.
author | diego |
---|---|
date | Wed, 14 Mar 2007 08:37:34 +0000 |
parents | 909e1e707dc5 |
children | 22aee0fa42a4 |
line wrap: on
line source
LIBNAME = libvidix.a include ../config.mak SRCS = vidixlib.c OBJS = $(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) all: $(LIBNAME) do_drivers do_drivers: $(MAKE) -C drivers $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) 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