?? makefile
字號:
# Nmake macros for building Windows 32-Bit apps
TARGETOS=BOTH
#APPVER=5.0
!include <win32.mak>
objs=ping.obj
all: ping.exe
# Update the resource if necessary
# Update the object file if necessary
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvarsmt) /Zp1 $*.c
# Update the executable file if necessary, and if so, add the resource back in.
ping.exe: $(objs) $(common_objs)
$(link) $(linkdebug) $(conlflags) -out:ping.exe $(objs) $(conlibsmt) ws2_32.lib
clean:
del *.obj
del *.exe
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -