?? makefile
字號:
########## Path for uCOS-II core source files #################################
UCOS_SRC=\software\ucos-ii\source
########## Path for uCOS-II WIN32 port source files ###########################
UCOS_PORT_SRC=\software\ucos-ii\Ports\80x86\WIN32\VC\src
########## Path for uCOS-II WIN32 example source files ########################
UCOS_PORT_EX=\software\ucos-ii\Ports\80x86\WIN32\VC\examples\example2
########## Name of Example source file ########################################
EXAMPLE=test.c
all:
@cl -nologo /MD /W3 /I$(UCOS_SRC) /I$(UCOS_PORT_SRC) /I$(UCOS_PORT_EX) $(EXAMPLE) $(UCOS_SRC)\ucos_ii.c $(UCOS_PORT_SRC)\pc.c $(UCOS_PORT_SRC)\os_cpu_c.c winmm.lib user32.lib
clean:
@if exist *.obj del *.obj
@if exist *.bak del *.bak
@if exist *.pdb del *.pdb
@if exist *.ilk del *.ilk
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -