?? makefile
字號:
## makefile # the makefile for a very simple AT91 port ## Bugs Report: li ming (lmcs00@mails.tsinghua.edu.cn)# Release: 2003-02-13 19:43:33## define this project informationPRJ_NAME = sample_test# define building objs for this projectAPP_FILES = ../src/main/main.c ../src/serial/serial.c ../src/net/net.cOBJS_FILES = $(ARCH_FILES) $(LIB_FILES) $(APP_FILES)OBJS = $(notdir $(OBJS_FILES:.c=.o))# define include dir-namesINCDIR = -I../src/serial -I../src/net# define compiling and linking FLAGSCPFLAGS := -Wall -Wstrict-prototypes -Wno-trigraphs -g -fno-strict-aliasing -fno-common -fno-common -pipe -fno-builtin -g -mapcs-32 -march=armv4 -mtune=arm7tdmi ASFLAGS := -D__ASSEMBLY__ -DNO_MM -g -mapcs-32 -marmv4 -msoft-float -mno-fpu -gLDFLAGS := -elf2flt# include the all-project-shared file include rules.make
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -