summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDan Christiansen <danchr@daimi.au.dk>2003-10-18 18:47:06 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-18 18:47:06 +0000
commitcf9d24adf66bcb99ee168301d40b297266a62203 (patch)
tree39bc5f7dd980257d9d2fce196249a925c612c8c2 /Makefile
parent2744ca9ac919d63fb8a5948c21d2e943cdd04e3d (diff)
- Moving -Wall from the individual Makefiles to configure (and only
have it passed to GCC) - Moving the usage in configure to the top of it, so you don't have to wait needlessly - Silence compiler output during configuration - Add support for configuring with IBM XLC patch by (Dan Christiansen <danchr at daimi dot au dot dk>) Originally committed as revision 2397 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 441dea1645..d5a9d376e0 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ include config.mak
VPATH=$(SRC_PATH)
-CFLAGS= -Wall $(OPTFLAGS) -I. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavformat -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
+CFLAGS=$(OPTFLAGS) -I. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavformat -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
LDFLAGS+= -g
ifeq ($(TARGET_GPROF),yes)