changeset 20538:587c0edea3b2

CFLAGS are not necessary for linking.
author diego
date Tue, 31 Oct 2006 12:41:29 +0000
parents ceb9ef336e7e
children 80c62a7b7c9d
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Tue Oct 31 12:35:50 2006 +0000
+++ b/Makefile	Tue Oct 31 12:41:29 2006 +0000
@@ -385,7 +385,7 @@
                $(STATIC_LIB) \
 
 $(PRG):	$(MPLAYER_DEP)
-	$(CC) $(CFLAGS) -o $(PRG) $(OBJS_MPLAYER) $(LIBS_MPLAYER)
+	$(CC) -o $(PRG) $(OBJS_MPLAYER) $(LIBS_MPLAYER)
 
 ifeq ($(MENCODER),yes)
 LIBS_MENCODER = libmpcodecs/libmpencoders.a \
@@ -393,7 +393,7 @@
                 $(COMMON_LIBS) \
 
 $(PRG_MENCODER): $(MENCODER_DEP)
-	$(CC) $(CFLAGS) -o $(PRG_MENCODER) $(OBJS_MENCODER) $(LIBS_MENCODER)
+	$(CC) -o $(PRG_MENCODER) $(OBJS_MENCODER) $(LIBS_MENCODER)
 endif
 
 osdep/mplayer-rc.o: osdep/mplayer.rc