📄 makefile
字号:
###
### Copyright (c) 2004 Equator Technologies, Inc.
###
# Name and type of the target for this Makefile
APP_TARGET := fix_fft.out
# Object files that compose the target
OBJS := fix_fft
#radix2ic4
## Put the extension on all objs
MAP := $(foreach obj,$(OBJS),$(obj).map)
OBJS := $(foreach obj,$(OBJS),$(obj).o)
## Set up the tools to use
CC = ecc
LD = ecc
OBJDUMP = objdump
RM = rm -f
%.o: %.c
$(CC) -c -o $@ $<
$(APP_TARGET): $(OBJS)
$(LD) $(OBJS) -o $(APP_TARGET)
$(OBJDUMP) --syms $(APP_TARGET) | sort | grep " g" > $(MAP)
clean:
$(RM) *.out *.o *.map
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -