summaryrefslogtreecommitdiffstats
path: root/libdha
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-15 00:49:32 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-03-15 00:49:32 +0000
commitbf422fe2092da208c6da71363c0ec016de553ef3 (patch)
tree5db74af6fa071d1e15232047ad0922de4efe6829 /libdha
parentbc1914ecad29c56abbd09a06b4790ec85be9a1c6 (diff)
downloadmpv-bf422fe2092da208c6da71363c0ec016de553ef3.tar.bz2
mpv-bf422fe2092da208c6da71363c0ec016de553ef3.tar.xz
Use standard variable names for SRCS and OBJS.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22591 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libdha')
-rw-r--r--libdha/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdha/Makefile b/libdha/Makefile
index a400e99146..344eb148df 100644
--- a/libdha/Makefile
+++ b/libdha/Makefile
@@ -18,12 +18,12 @@ else
LIBNAME = libdha.so.$(VERSION)
endif
-SRCS=libdha.c \
+SRCS_MPLAYER = libdha.c \
mtrr.c \
pci.c \
pci_names.c \
-OBJS=$(SRCS:.c=.o)
+OBJS_MPLAYER=$(SRCS_MPLAYER:.c=.o)
CFLAGS = -fPIC -I. -I.. $(OPTFLAGS)
@@ -42,7 +42,7 @@ endif
all: pci_names.c $(LIBNAME) $(SHORTNAME)
-$(LIBNAME): $(OBJS)
+$(LIBNAME): $(OBJS_MPLAYER)
ifeq ($(TARGET_WIN32),yes)
$(AR) r $@ $^
else
@@ -65,7 +65,7 @@ distclean: clean
rm -f .depend test
dep depend: pci_names.c
- $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
+ $(CC) -MM $(CFLAGS) $(SRCS_MPLAYER) 1>.depend
install:
-mkdir -p $(LIBDIR)