makefile

来自「从FFMPEG转换而来的H264解码程序,VC下编译..」· 代码 · 共 29 行

TXT
29
字号
CFLAGS+= -I. -I../.. -I../../xiph
 
SRCS_C=blockmap.c comment.c dct.c dct_decode.c \
     dct_encode.c decode.c encode.c frarray.c frinit.c \
     huffman.c idct.c mcomp.c misc_common.c pb.c pp.c \
     quant.c reconstruct.c scan.c toplevel.c encoder_toplevel.c \
     cpu.c dsp.c ../../xiph/ogg/bitwise.c ../../xiph/ogg/framing.c

SRCS=i386/recon_mmx.cpp i386/dsp_mmx.cpp i386/dsp_mmxext.cpp i386/fdct_mmx.cpp \
     i386/mmxIdct.cpp i386/loopf_asm.cpp i386/DeblockOpt.cpp i386/DeRingOpt.cpp

SLIB=../../../bin/ff_theora.dll
DEF=ff_theora.def

# enable SSE because compilation fails without it
SSE=yes

include ../../makefile_c.inc

.all: $(SLIB)

clean: 
	rm -f *.o *~ $(SLIB) i386/*.o *.d i386/*.d

#
# include dependency files if they exist
#
-include $(SRCS:.cpp=.d) $(SRCS_C:.c=.d)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?