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

📄 makefile

📁 ARM 的 Diab C源码。包括启动程序crt0.s
💻
字号:
# example/coldfire/makefile: makefile for Bubble Sort example program.## Target: ColdFire MCF5200, ELF, no floating point (-tMCF5200FN).#         Link for execution by WindISS library (-t...:windiss).OBJECTS = crt0.o bubble.o swap.oTARGET = -tMCF5200FN:windissLFLAGS = $(TARGET) -m6LIBS   = -lc -limplbubble.out : $(OBJECTS) bubble.dld	dld $(LFLAGS) -o bubble.out $(OBJECTS) $(LIBS) bubble.dld > bubble.map.c.o :	dcc $(TARGET) -c -o $*.o $<.s.o :	das $(TARGET) $<clean :	rm *.o bubble.out bubble.map.SUFFIXES: .s   # required by some makes# Notes:# - OBJECTS     Put crt0.o first so dld will link it first.# - dld         -lc: link libc.a from directory selected by -tMCF5200FN:windiss.# - dcc         Add -g for debugging, -XO for highly optimized code.# - das         Add -g for debugging.

⌨️ 快捷键说明

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