module.mk
来自「《C++嵌入系统编程》实例源代码,对做嵌入式开发有一定的参考作用」· MK 代码 · 共 28 行
MK
28 行
########################################################################
#
# Filename: module.mk
#
# Description: Build instructions for the examples in Chapter 7.
#
# Notes:
#
#
# Copyright (c) 1998 by Michael Barr. This software is placed into
# the public domain and may be used for any purpose. However, this
# notice must not be changed or removed and no warranty is either
# expressed or implied by its publication or distribution.
########################################################################
CHAPTER7 = Chapter7\blink.exe
Chapter7\blink.exe: Chapter3\startup.obj Chapter5\i8018xEB.obj \
Chapter7\timer.obj Chapter7\led.obj Chapter7\blink.obj
$(RM) $@
$(LD) $(LFLAGS) @&&!
$?
$@
$*.map
$(ARCOMLIB) math$(MODEL) $(BCCLIB)
!
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?