📄 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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -