Mercurial > mplayer.hg
changeset 22573:749da6290adc
Use standard variable names for SRCS and OBJS.
author | diego |
---|---|
date | Thu, 15 Mar 2007 00:49:32 +0000 |
parents | a5e0e1210f0f |
children | fc29f62bcb0e |
files | libdha/Makefile |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libdha/Makefile Thu Mar 15 00:29:50 2007 +0000 +++ b/libdha/Makefile Thu Mar 15 00:49:32 2007 +0000 @@ -18,12 +18,12 @@ 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 @@ all: pci_names.c $(LIBNAME) $(SHORTNAME) -$(LIBNAME): $(OBJS) +$(LIBNAME): $(OBJS_MPLAYER) ifeq ($(TARGET_WIN32),yes) $(AR) r $@ $^ else @@ -65,7 +65,7 @@ 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)