1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-03 05:22:23 +00:00
mpv/vidix/Makefile
diego a54f28cddf Remove superfluous/obsolete rules and variables.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22561 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-03-14 08:37:34 +00:00

32 lines
459 B
Makefile

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