mirror of
https://github.com/mpv-player/mpv
synced 2025-03-02 04:11:03 +00:00
Reuse common parts of all Makefiles through mpcommon.mak.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22567 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5fe6345197
commit
57c3425749
@ -3,27 +3,17 @@ include ../config.mak
|
||||
LIBNAME_MPLAYER = libvidix.a
|
||||
|
||||
SRCS_MPLAYER = vidixlib.c
|
||||
OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)
|
||||
|
||||
CFLAGS = $(OPTFLAGS)
|
||||
|
||||
all: $(LIBNAME_MPLAYER)
|
||||
all: libs
|
||||
$(MAKE) -C drivers
|
||||
|
||||
$(LIBNAME_MPLAYER): $(OBJS_MPLAYER)
|
||||
$(AR) r $@ $^
|
||||
$(RANLIB) $@
|
||||
|
||||
clean:
|
||||
rm -f *.o *.a *~
|
||||
clean::
|
||||
$(MAKE) -C drivers clean
|
||||
|
||||
distclean: clean
|
||||
rm -f .depend
|
||||
distclean::
|
||||
$(MAKE) -C drivers distclean
|
||||
|
||||
dep depend:
|
||||
$(CC) -MM $(CFLAGS) $(SRCS_MPLAYER) 1>.depend
|
||||
dep depend::
|
||||
$(MAKE) -C drivers depend
|
||||
|
||||
-include .depend
|
||||
include ../mpcommon.mak
|
||||
|
Loading…
Reference in New Issue
Block a user