summaryrefslogtreecommitdiffstats
path: root/mp3lib/Makefile
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-24 21:09:13 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-05-24 21:09:13 +0000
commit35648100f92a8d9d6d382c6ff9532a86e64a9e0f (patch)
treea3a1e6d8a2aac3ce62f18c4e35d736049b354207 /mp3lib/Makefile
parent6daab845eac976d0b342fa9a3be954b64d5c09aa (diff)
downloadmpv-35648100f92a8d9d6d382c6ff9532a86e64a9e0f.tar.bz2
mpv-35648100f92a8d9d6d382c6ff9532a86e64a9e0f.tar.xz
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
Diffstat (limited to 'mp3lib/Makefile')
-rw-r--r--mp3lib/Makefile3
1 files changed, 2 insertions, 1 deletions
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