makefile
来自「LPC based lcd interface」· 代码 · 共 24 行
TXT
24 行
#This defines the target filename
TARGET = floatbench.bin
#include the generic stuff for all the examples including the target names for make
include ../make.defs
include ../make.rules
OBJS = $(OBJ)in_main.o $(OBJ)float_bench.o $(OBJ)asm_path.o32 $(OBJ)in_eb01.o32 $(OBJ)in_reset.o32
$(OBJ)$(TARGET) : $(OBJS)
$(LINK) $(LDFLAGS) -o $(OBJ)$(TARGET) $(OBJS) $(ANGEL_LIB) $(AT91_LIB32) $(LIBC) $(GCC_LIB)
$(OBJ)in_main.o : $(INIT_LIB)/in_main.c $(INCLUDE)/ebi.h $(INCLUDE)/std_c.h
$(OBJ)float_bench.o : float_bench.c $(INCLUDE)/aic.h $(INCLUDE)/eb01.h $(INCLUDE)/pio.h $(INCLUDE)/std_c.h $(INCLUDE)/tc.h ../../library/lib_pio.c
$(CC) $(CFLAGS) $< -o$(OBJ)$(@F)
$(OBJ)asm_path.o32 : ../../asm_path.s
$(OBJ)in_eb01.o32 : $(INIT_LIB)/in_eb01.s $(INCLUDE)/ebi.inc
$(OBJ)in_reset.o32 : $(INIT_LIB)/in_reset.s $(INCLUDE)/aic.inc $(INCLUDE)/arm.inc $(INCLUDE)/int_mem.inc
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?