📄 makefile
字号:
ASM = ml
AFLAG = /c /coff
# AFLAG = /c /coff /Zd /Zi
# CC = cl
# CFLAG = /c /Gr /GF /Oa /Ob2 /Ot /Og /Oi /Op /ML /W4 /Zp1 /D "NDEBUG"
CC = icl
CFLAG = /c /D "NDEBUG" /Gr /Oy /Qsfalign16 /Qsox- /Qvc6 /Zp1 /G6 /GF /Og /Oi /Op /Ot /Qip
LINK = link
LFLAG = /DLL /nologo /EXPORT:vfGetPluginInfo /EXPORT:vfGetPluginFunc /EXPORT:vfGetPluginFuncEditExt /EXPORT:GetInputPluginTable kernel32.lib user32.lib advapi32.lib
RC = rc
BINDIR = "..\release\"
RES = m2v.res
ALL: m2v.vfp
!INCLUDE depend.mak
m2v.vfp: $(OBJ) $(RES)
$(LINK) $(LFLAG) /OUT:m2v.vfp *.obj m2v.res
m2v.res: m2v.rc resource.h
$(RC) m2v.rc
clean:
DEL *.obj
DEL *.res
DEL *.exp
DEL *.lib
DEL m2v.vfp
install: all
copy m2v.vfp $(BINDIR)m2v.vfp
depend:
ruby depend.rb > depend.mak
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -