📄 makefile
字号:
CFLAGS+= -I. -Iinclude -I../..
FORCECPP=1
#CFLAGS+=-fverbose-asm -save-temps
SRCS_C= libmpeg2/alloc.c libmpeg2/decode.c libmpeg2/header.c \
libmpeg2/idct.c libmpeg2/idct_mmx.c libmpeg2/motion_comp.c \
libmpeg2/motion_comp_mmx.c libmpeg2/slice.c libmpeg2/cpu_accel.c \
libmpeg2/idct_sse2.c libmpeg2/mc_sse2.c \
version.c
SLIB=../../../bin/libmpeg2_ff.dll
DEF=libmpeg2_ff.def
# enable SSE because compilation fails without it
SSE=yes
include ../../makefile_c.inc
.all: $(SLIB)
clean:
rm -f *.o libmpeg2/*.o *~ $(SLIB) *.d libmpeg2/*.d
#
# include dependency files if they exist
#
-include $(SRCS:.cpp=.d) $(SRCS_C:.c=.d)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -