summaryrefslogtreecommitdiffstats
path: root/mp3lib/Makefile
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-19 21:21:00 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-19 21:21:00 +0000
commitdc62e094ddcebfc8c0c902de1b11e8a1963fa607 (patch)
treee6de763b4c3a3468aa65bd84b0dbf64f32aba936 /mp3lib/Makefile
parentb6b47b29b8d33541bdd7270fe74082c4f7c0fd96 (diff)
downloadmpv-dc62e094ddcebfc8c0c902de1b11e8a1963fa607.tar.bz2
mpv-dc62e094ddcebfc8c0c902de1b11e8a1963fa607.tar.xz
remove TARGET lofasz
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4267 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/Makefile')
-rw-r--r--mp3lib/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index 3aba018910..e33824e3e9 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -11,23 +11,23 @@ CFLAGS = $(OPTFLAGS) $(EXTRA_INC)
ifeq ($(TARGET_ARCH_X86),yes)
SRCS += decode_i586.c
OBJS += decode_i586.o
-ifeq ($(TARGET_MMX),yes)
+#ifeq ($(TARGET_MMX),yes)
CFLAGS += -fomit-frame-pointer
SRCS += decode_MMX.c dct64_MMX.c tabinit_MMX.c
OBJS += decode_MMX.o dct64_MMX.o tabinit_MMX.o
-endif
+#endif
#ifeq ($(TARGET_SSE),yes)
#SRCS += dct64_sse.s
#OBJS += dct64_sse.o
#endif
-ifeq ($(TARGET_3DNOW),yes)
+#ifeq ($(TARGET_3DNOW),yes)
SRCS += dct36_3dnow.s dct64_3dnow.c
OBJS += dct36_3dnow.o dct64_3dnow.o
-endif
-ifeq ($(TARGET_3DNOWEX),yes)
-SRCS += dct36_k7.s dct64_k7.c
+#endif
+#ifeq ($(TARGET_3DNOWEX),yes)
+SRCS += dct36_k7.c dct64_k7.c
OBJS += dct36_k7.o dct64_k7.o
-endif
+#endif
endif
.SUFFIXES: .c .o