# HG changeset patch # User diego # Date 1173861958 0 # Node ID 9193e4b4834f020f7ed9075a2e7ad95b9d6b3b95 # Parent 322fed4ddef2f1d930c99cf98e0b672c95c3a7c4 cosmetics: Rename variables for consistency with other Makefiles. diff -r 322fed4ddef2 -r 9193e4b4834f vidix/Makefile --- 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