From 35648100f92a8d9d6d382c6ff9532a86e64a9e0f Mon Sep 17 00:00:00 2001 From: arpi_esp Date: Thu, 24 May 2001 21:09:13 +0000 Subject: using gcc -MM instead of makedepend, make OBJS from SRCS where possible git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@867 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mp3lib/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mp3lib') diff --git a/mp3lib/Makefile b/mp3lib/Makefile index c206feee09..c8ee1eb915 100644 --- a/mp3lib/Makefile +++ b/mp3lib/Makefile @@ -3,6 +3,7 @@ include config.mak SRCS = sr1.c d_cpu.s decode_i586.s $(OPTIONAL_SRCS) OBJS = sr1.o d_cpu.o decode_i586.o $(OPTIONAL_OBJS) +# OBJS = $(SRCS:.c,.s=.o) CFLAGS = $(OPTFLAGS) .SUFFIXES: .c .o @@ -36,7 +37,7 @@ dep: depend depend: .depend .depend: Makefile config.mak ../config.mak ../config.h - makedepend -f- -- $(CFLAGS) -- $(SRCS) 1>.depend 2>/dev/null + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist -- cgit v1.2.3