📄 makefile
字号:
# Makefile for chapter 5CC=armcc -Otime -cAS=armasm -cpu 5TELD=armlink -oFILES=ch05test.o test.o test_s.och05test.axf: $(FILES) $(LD) ch05test.axf $(FILES)ch05test.o: ch05test.c $(CC) ch05test.ctest.o: test.c $(CC) test.ctest_s.o: test_s.s $(AS) test_s.sclean: rm *.o *.axf
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -