makefile
来自「MAKEFILE 经典编写方法」· 代码 · 共 30 行
TXT
30 行
## 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 #ASFLAGS := -D__ASSEMBLY__ -DNO_MM -g # include the all-project-shared file include rules.make
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?