cosmetics: Rename variables for consistency with other Makefiles.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22565 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-03-14 08:45:58 +00:00
parent a7bed6cfc5
commit 35d532bddc
1 changed files with 6 additions and 6 deletions

View File

@ -1,16 +1,16 @@
include ../config.mak include ../config.mak
LIBNAME = libvidix.a LIBNAME_MPLAYER = libvidix.a
SRCS = vidixlib.c SRCS_MPLAYER = vidixlib.c
OBJS = $(SRCS:.c=.o) OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o)
CFLAGS = $(OPTFLAGS) CFLAGS = $(OPTFLAGS)
all: $(LIBNAME) all: $(LIBNAME_MPLAYER)
$(MAKE) -C drivers $(MAKE) -C drivers
$(LIBNAME): $(OBJS) $(LIBNAME_MPLAYER): $(OBJS_MPLAYER)
$(AR) r $@ $^ $(AR) r $@ $^
$(RANLIB) $@ $(RANLIB) $@
@ -23,7 +23,7 @@ distclean: clean
$(MAKE) -C drivers distclean $(MAKE) -C drivers distclean
dep depend: dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend $(CC) -MM $(CFLAGS) $(SRCS_MPLAYER) 1>.depend
$(MAKE) -C drivers depend $(MAKE) -C drivers depend
-include .depend -include .depend