⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 ARM嵌入式系统开发--软件设计与优化随书源代码。开发环境asm+c
💻
字号:
# 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 + -