makefile
来自「里面有一对定点FFT和IFFT算法」· 代码 · 共 29 行
TXT
29 行
###
### 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 + =
减小字号Ctrl + -
显示快捷键?