?? makefile
字號:
#
# makefile -- a simple demo of system bootloader
#
# Author: li ming <admin@lumit.org>
# Date: 2005-5-24
# Copyleft: http://www.lumit.org
#
#************************************************************
# system bootloader
all:
armasm startup.s -o startup.o
armcc -c main.c -o main.o
armlink startup.o main.o -ro-base 0x8000 -entry 0x8000 -first startup.o -o led.axf
fromelf led.axf -bin -output led.bin
fromelf -c -d -s -o led.lst led.axf
uuencode led.bin led.uue
#************************************************************
# clean up all temp file except source file
clean:
-del *.o
-del *.axf
-del *.bin
-del *.bak
-del *.lst
-del *.uue
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -