strmtst.mk

来自「realview22.rar」· MK 代码 · 共 33 行

MK
33
字号
CPP=armcpp
CC=armcc
AS=armasm
LD=armlink
AR=armar
FE=fromelf


all: strmtst.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

CFLAGS = -g -O1


strmtst.axf: strmtst.o
	$(LD) strmtst.o --info totals -o strmtst.axf

strmtst.o: strmtst.cpp
	$(CPP) -c $(CFLAGS) strmtst.cpp -o strmtst.o

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?