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

📄 makefile

📁 国外网站找到的
💻
字号:
#compilateur CXX = gccOS = "UNIX"all: FFT# for Unixifeq ($(OS),"UNIX")
	@echo Build completedelse
# for Windows
	@if exist *.axf echo Build completed
endifclean:	rm -f FFT *~ *.o ./test/*~ ./fft/*~CFLAGS = -c -g -O2 -WLIBS = -lmCOMMON = t000008.o t000016.o t000032.o t000064.o t000128.o t000256.o t000512.o t001024.o FFTTest.oFFT: $(COMMON) FFT.o	$(CXX) $(COMMON) FFT.o \	-o FFT $(LIBS)FFT.o: fft/FFT.c	$(CXX) $(CFLAGS) fft/FFT.c $(LIBS)t000008.o: test/t000008.c
	$(CXX) $(CFLAGS) test/t000008.c -o t000008.ot000016.o: test/t000016.c
	$(CXX) $(CFLAGS) test/t000016.c -o t000016.ot000032.o: test/t000032.c
	$(CXX) $(CFLAGS) test/t000032.c -o t000032.ot000064.o: test/t000064.c
	$(CXX) $(CFLAGS) test/t000064.c -o t000064.ot000128.o: test/t000128.c
	$(CXX) $(CFLAGS) test/t000128.c -o t000128.ot000256.o: test/t000256.c
	$(CXX) $(CFLAGS) test/t000256.c -o t000256.ot000512.o: test/t000512.c
	$(CXX) $(CFLAGS) test/t000512.c -o t000512.ot001024.o: test/t001024.c
	$(CXX) $(CFLAGS) test/t001024.c -o t001024.oFFTTest.o: test/FFTTest.c fft/FFT.h
	$(CXX) $(CFLAGS) test/FFTTest.c -o FFTTest.o 

⌨️ 快捷键说明

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