mirror of
https://github.com/mpv-player/mpv
synced 2024-12-11 17:37:23 +00:00
ddc4bdf2cb
patch by Joey Parrish <joey@yunamusic.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7074 b3059339-0415-0410-9bf9-f77b7e298cf2
49 lines
641 B
Makefile
49 lines
641 B
Makefile
LIBNAME = libvidix.a
|
|
SUBDIRS = drivers
|
|
DO_MAKE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done
|
|
|
|
include ../config.mak
|
|
|
|
SRCS = vidixlib.c
|
|
OBJS = $(SRCS:.c=.o)
|
|
|
|
CFLAGS = $(OPTFLAGS)
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
# .PHONY: all clean
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
all: $(SUBDIRS) $(LIBNAME)
|
|
$(DO_MAKE)
|
|
|
|
$(LIBNAME): $(OBJS)
|
|
$(AR) r $(LIBNAME) $(OBJS)
|
|
|
|
|
|
clean:
|
|
rm -f *.o *.a *~
|
|
$(DO_MAKE)
|
|
|
|
distclean:
|
|
rm -f test *.o *.a *~ .depend
|
|
$(DO_MAKE)
|
|
|
|
dep: depend
|
|
$(DO_MAKE)
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
install:
|
|
$(DO_MAKE)
|
|
|
|
#
|
|
# include dependency files if they exist
|
|
#
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|