⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.win

📁 实现快速傅立叶变换算法,provides test framwork for FFT testing
💻 WIN
字号:
# Project: FFT Demo
# Makefile created by Dev-C++ 4.9.9.2

CPP  = m68k-elf-g++.exe
CC   = m68k-elf-gcc.exe
WINDRES = windres.exe
RES  = 
OBJ  = Build/sample-c-test.o $(RES)
LINKOBJ  = Build/sample-c-test.o $(RES)
LIBS =  -L"C:/cygwin/m68k-elf-3.3.2/lib" -mcpu=5485 -L"../ecos/ecos_install/lib" -T../ecos/ecos_install/lib/target.ld ../ecos/ecos_install/lib/libtarget.a ../ecos/ecos_install/lib/libextras.a -O3  -nostdlib -static -Wl,--gc-sections,--print-map,-Map=eCos.map  -ffunction-sections  -fdata-sections  
INCS =  -I"../../../include"  -I"../ecos/ecos_install/include"  -I"../include" 
CXXINCS =  -I"../../../include"  -I"../ecos/ecos_install/include"  -I"../include" 
BIN  = Install/demo.elf
CXXFLAGS = $(CXXINCS)   -mcpu=5485
CFLAGS = $(INCS) -DGNU_CF548X -DNDEBUG -Wall  -Wpointer-arith  -Wstrict-prototypes  -Winline  -Wundef  -fno-exceptions -O3    -mcpu=5485
RM = rm -f

.PHONY: all all-before all-after clean clean-custom

all: all-before Install/demo.elf all-after

include objcopy.mak

clean: clean-custom
	${RM} $(OBJ) $(BIN)

$(BIN): $(OBJ)
	$(CC) $(LINKOBJ) -o "Install\demo.elf" $(LIBS)

Build/sample-c-test.o: ../../../src/sample-c-test.c
	$(CC) -c ../../../src/sample-c-test.c -o Build/sample-c-test.o $(CFLAGS)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -