📄 makefile
字号:
# 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 + -