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

📄 makefile

📁 2维fft程序
💻
字号:
# ---- for GNU gcc ----CC = gccCFLAGS = -WallOFLAGS = -O2# ---- for SUN WS cc ----##CC = cc##CFLAGS = ##OFLAGS = -xO2all: fft4f2dt fftsg2dt fftsg3dt shrtdcttfft4f2dt : fft4f2dt.o fft4f2d.o alloc.o	$(CC) fft4f2dt.o fft4f2d.o alloc.o -lm -o fft4f2dtfftsg2dt : fftsg2dt.o fftsg2d.o fftsg.o alloc.o	$(CC) fftsg2dt.o fftsg2d.o fftsg.o alloc.o -lm -o fftsg2dtfftsg3dt : fftsg3dt.o fftsg3d.o fftsg.o alloc.o	$(CC) fftsg3dt.o fftsg3d.o fftsg.o alloc.o -lm -o fftsg3dtshrtdctt : shrtdctt.o shrtdct.o	$(CC) shrtdctt.o shrtdct.o -lm -o shrtdcttfft4f2dt.o : fft4f2dt.c	$(CC) $(CFLAGS) $(OFLAGS) -c fft4f2dt.c -o fft4f2dt.offtsg2dt.o : fftsg2dt.c	$(CC) $(CFLAGS) $(OFLAGS) -c fftsg2dt.c -o fftsg2dt.offtsg3dt.o : fftsg3dt.c	$(CC) $(CFLAGS) $(OFLAGS) -c fftsg3dt.c -o fftsg3dt.oshrtdctt.o : shrtdctt.c	$(CC) $(CFLAGS) $(OFLAGS) -c shrtdctt.c -o shrtdctt.offt4f2d.o : ../fft4f2d.c	$(CC) $(CFLAGS) $(OFLAGS) -c ../fft4f2d.c -o fft4f2d.offtsg2d.o : ../fftsg2d.c	$(CC) $(CFLAGS) $(OFLAGS) -c ../fftsg2d.c -o fftsg2d.offtsg3d.o : ../fftsg3d.c	$(CC) $(CFLAGS) $(OFLAGS) -c ../fftsg3d.c -o fftsg3d.offtsg.o : ../fftsg.c	$(CC) $(CFLAGS) $(OFLAGS) -c ../fftsg.c -o fftsg.oalloc.o : ../alloc.c	$(CC) $(CFLAGS) $(OFLAGS) -c ../alloc.c -o alloc.oshrtdct.o : ../shrtdct.c	$(CC) $(CFLAGS) $(OFLAGS) -c ../shrtdct.c -o shrtdct.oclean:	rm -f *.o

⌨️ 快捷键说明

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