# HG changeset patch # User diego # Date 1173919772 0 # Node ID 749da6290adccf7637a903569243f6d16ec23ff8 # Parent a5e0e1210f0fa83661aad21a4a9ba80cc1a21cde Use standard variable names for SRCS and OBJS. diff -r a5e0e1210f0f -r 749da6290adc libdha/Makefile --- 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)