📄 makefile
字号:
! include <ntwin32.mak>
# define these if you want a debug version
#PDB = IpStat.pdb
#CDEBUG= -Zi -Fd"$(PDB)"
#LDEBUG = -debug:full
LIBS = kernel32.lib msvcrt.lib wsock32.lib iphlpapi.lib
.cpp.obj:
cl $(CDEBUG) -W3 -MD -c $<
all:IpStat.exe
IpStat.exe:IpStat.obj
link -nodefaultlib IpStat.obj $(LIBS) $(LDEBUG) \
#
# uncomment the line below for a debug build
# -pdb:$(PDB) \
-out:IpStat.exe
clean:
-del *.obj
cleanall:clean
-del *.exe
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -