summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-14 08:45:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-14 08:45:58 +0000
commit35d532bddce99d2bf6a8d160c183f2fc44e303c3 (patch)
treecd0ee654d18674bb4e093456996d8116703cd9e1 /vidix
parenta7bed6cfc5d28269bd8716b6ca6353aa55d52c75 (diff)
downloadmpv-35d532bddce99d2bf6a8d160c183f2fc44e303c3.tar.bz2
mpv-35d532bddce99d2bf6a8d160c183f2fc44e303c3.tar.xz
cosmetics: Rename variables for consistency with other Makefiles.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22565 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/vidix/Makefile b/vidix/Makefile
index 75e83968d4..c88aa22fc0 100644
--- a/vidix/Makefile
+++ b/vidix/Makefile
@@ -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 @@ distclean: clean
$(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