newtst.mk

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

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


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


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

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

⌨️ 快捷键说明

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