1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-18 12:55:16 +00:00
mpv/vidix/Makefile
diego 35d532bddc cosmetics: Rename variables for consistency with other Makefiles.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22565 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-03-14 08:45:58 +00:00

30 lines
478 B
Makefile

include ../config.mak
LIBNAME_MPLAYER = libvidix.a
SRCS_MPLAYER = vidixlib.c
OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)
CFLAGS = $(OPTFLAGS)
all: $(LIBNAME_MPLAYER)
$(MAKE) -C drivers
$(LIBNAME_MPLAYER): $(OBJS_MPLAYER)
$(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_MPLAYER) 1>.depend
$(MAKE) -C drivers depend
-include .depend