Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-01-25 03:34:38 +0300
committerDiego Biurrun <diego@biurrun.de>2007-01-25 03:34:38 +0300
commit722dabcc947592be5473ec6089c5c70488260f63 (patch)
tree3394adf57dac9d6b2bef447b49243fcbfab3e828 /common.mak
parent150d27725b8fc9240a8b9d51ae8606782494e2be (diff)
Move conditional CFLAGS and OBJS setting to common place.
Originally committed as revision 7699 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak4
1 files changed, 4 insertions, 0 deletions
diff --git a/common.mak b/common.mak
index 9f28b596d3..0d5fdceec4 100644
--- a/common.mak
+++ b/common.mak
@@ -5,6 +5,10 @@
VPATH = $(SRC_PATH_BARE)/lib$(NAME)
SRC_DIR = "$(VPATH)"
+CFLAGS += $(CFLAGS-yes)
+OBJS += $(OBJS-yes)
+ASM_OBJS += $(ASM_OBJS-yes)
+
CFLAGS += -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
-D_ISOC9X_SOURCE -I$(BUILD_ROOT) -I$(SRC_PATH) \
-I$(SRC_PATH)/libavutil $(OPTFLAGS)