⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 发动机控制
💻
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -