changeset 22547:9193e4b4834f

cosmetics: Rename variables for consistency with other Makefiles.
author diego
date Wed, 14 Mar 2007 08:45:58 +0000
parents 322fed4ddef2
children 42bd84f21090
files vidix/Makefile
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/vidix/Makefile	Wed Mar 14 08:44:16 2007 +0000
+++ b/vidix/Makefile	Wed Mar 14 08:45:58 2007 +0000
@@ -1,16 +1,16 @@
 include ../config.mak
 
-LIBNAME = libvidix.a
+LIBNAME_MPLAYER = libvidix.a
 
-SRCS    = vidixlib.c
-OBJS	= $(SRCS:.c=.o)
+SRCS_MPLAYER    = vidixlib.c
+OBJS_MPLAYER	= $(SRCS_MPLAYER:.c=.o)
 
 CFLAGS  = $(OPTFLAGS)
 
-all:	$(LIBNAME)
+all:	$(LIBNAME_MPLAYER)
 	$(MAKE) -C drivers
 
-$(LIBNAME):	$(OBJS)
+$(LIBNAME_MPLAYER): $(OBJS_MPLAYER)
 	$(AR) r $@ $^
 	$(RANLIB) $@
 
@@ -23,7 +23,7 @@
 	$(MAKE) -C drivers distclean
 
 dep depend:
-	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+	$(CC) -MM $(CFLAGS) $(SRCS_MPLAYER) 1>.depend
 	$(MAKE) -C drivers depend
 
 -include .depend