From 7e6c86e65ddb7cef13f856acf0e10737e10564d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Sun, 12 Jul 2009 13:29:46 +0000 Subject: Allow unusual ways of specifying compiler output file Some compilers do not use the typical -c -o foo.o style. This allows compiler-specific equivalents to be set by the configure script. Originally committed as revision 19409 to svn://svn.ffmpeg.org/ffmpeg/trunk --- common.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common.mak') diff --git a/common.mak b/common.mak index 20d32ed835..0d3b0d1258 100644 --- a/common.mak +++ b/common.mak @@ -21,7 +21,7 @@ ALLFFLIBS = avcodec avdevice avfilter avformat avutil postproc swscale CPPFLAGS += -DHAVE_AV_CONFIG_H -I$(BUILD_ROOT_REL) -I$(SRC_PATH) %.o: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< + $(CC) $(CPPFLAGS) $(CFLAGS) $(LIBOBJFLAGS) -c $(CC_O) $< %.o: %.S $(AS) $(CPPFLAGS) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< -- cgit v1.2.3