makefile
来自「发动机控制」· 代码 · 共 20 行
TXT
20 行
# This is the makefile which run by nMake
# Copy right scj,2004
# The Current Directory is defined by macro MAKEDIR
# So,the nMAKE should be the same folder with source file
!MESSAGE Make Project by Microsoft nMake...
!MESSAGE The output file dir is: $(MAKEDIR)
main.hex : main.obj
-l51 main.obj,C51s.lib RAMSIZE(256) XDATA(32768)
-ohs51 main
dir main.hex
main.obj : main.src
-a51 $*.src
main.src : main.c
-c51 $*.c SRC
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?