📄 makefile.txt
字号:
#/******************************************************************************# *# * Filename: Makefile# *# * Classic makefile intended for use in gnu environment. The entries listed# * here are intentionally simple to aid the novice user in his/her own# * development - for easy modification.# *# * Revision information:# *# * 20SEP2004 kb_admin initial creation# *# * BEGIN_KBDD_BLOCK# * No warranty, expressed or implied, is included with this software. It is# * provided "AS IS" and no warranty of any kind including statutory or aspects# * relating to merchantability or fitness for any purpose is provided. All# * intellectual property rights of others is maintained with the respective# * owners. This software is not copyrighted and is intended for reference# * only.# * END_BLOCK# ******************************************************************************# SHELL = /bin/shbasetoolsdir = /usr/local/arm/2.95.3bindir = ${basetoolsdir}/binlibdir = ${basetoolsdir}/lib/gcc-lib/arm-linux/2.95.3CC = ${bindir}/arm-linux-gccAS = ${bindir}/arm-linux-asLD = ${bindir}/arm-linux-ldOBJCOPY = ${bindir}/arm-linux-objcopyCFILES = main.o debug_io.o at91rm9200_lowlevel.o prompt.o p_string.o xmodem.o eeprom.o flash.oASFILES = arm_init.oLIBS=${libdir}/libgcc.aramMonitor: ${CFILES} ${ASFILES} ${LIBS} ${LD} -e 0 -o ramMonitor.out -T linker.cfg ${ASFILES} ${CFILES} ${LIBS} ${OBJCOPY} -O binary ramMonitor.out ramMonitor.binmain.o: main.c ${CC} -c $?debug_io.o: debug_io.c ${CC} -c $?at91rm9200_lowlevel.o: at91rm9200_lowlevel.c ${CC} -c $?prompt.o: prompt.c ${CC} -c $?p_string.o: p_string.c ${CC} -c $?xmodem.o: xmodem.c ${CC} -c $?eeprom.o: eeprom.c ${CC} -c $?flash.o: flash.c ${CC} -c $?arm_init.o: arm_init.s ${AS} -o $@ $?clean: rm -f *.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -