makefile
来自「从FFMPEG转换而来的H264解码程序,VC下编译..」· 代码 · 共 24 行
TXT
24 行
CFLAGS+= -I. -I../..
SRCS=ff_kernelDeint.cpp
SLIB=../../../bin/ff_kernelDeint.dll
DEF=ff_kernelDeint.def
GCCLIBS=-lstdc++
# enable SSE because compilation fails without it
SSE=yes
include ../../makefile_c.inc
.all: $(SLIB)
clean:
rm -f *.o *~ $(SLIB) *.d
#
# include dependency files if they exist
#
-include $(SRCS:.cpp=.d) $(SRCS_C:.c=.d)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?