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:
diego 2007-03-14 08:55:06 +00:00
parent 5fe6345197
commit 57c3425749
1 changed files with 5 additions and 15 deletions

View File

@ -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