diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-23 13:30:51 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-23 13:30:51 +0100 |
commit | 25ca8aef54b65c77ed36ab5a6877eba18560e6b8 (patch) | |
tree | 5e90ca85f7a2364a156154e8c9bbc8ca75018736 /common.mak | |
parent | e9c372362cb736240dcd87658a027ecfb7b9d240 (diff) | |
parent | 4a606c830ae664013cea33800094d4d0f4ec62da (diff) | |
download | ffmpeg-25ca8aef54b65c77ed36ab5a6877eba18560e6b8.tar.gz |
Merge commit '4a606c830ae664013cea33800094d4d0f4ec62da'
* commit '4a606c830ae664013cea33800094d4d0f4ec62da':
av_memcpy_backptr: optimise some special cases
mpegvideo: simplify dxy calculation in hpel_motion()
build: add rules to generate preprocessed source files
Conflicts:
Makefile
libavutil/mem.c
library.mak
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common.mak b/common.mak index 751085d86e..0c48484e0e 100644 --- a/common.mak +++ b/common.mak @@ -56,6 +56,9 @@ COMPILE_S = $(call COMPILE,AS) %.o: %.S $(COMPILE_S) +%.i: %.c + $(CC) $(CCFLAGS) $(CC_E) $< + %.h.c: $(Q)echo '#include "$*.h"' >$@ |