strtest.mk
来自「realview22.rar」· MK 代码 · 共 33 行
MK
33 行
CC=armcc
AS=armasm
LD=armlink
AR=armar
FE=fromelf
all: strtest.axf
# for Unix
# @echo Build completed
# for Windows
@if exist *.axf echo Build completed
rebuild: clean all
clean:
# for Unix
# rm -f *.o *.axf
# for Windows
if exist *.o del *.o
if exist *.axf del *.axf
strtest.axf: strtest.o scopy.o
$(LD) strtest.o scopy.o -o strtest.axf
strtest.o: strtest.c
$(CC) strtest.c -c -g -o strtest.o
scopy.o: scopy.s
$(AS) scopy.s -g -o scopy.o
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?