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

📄 makefile.f77

📁 This is a package to calculate Discrete Fourier/Cosine/Sine Transforms of 1-dimensional sequences of
💻 F77
字号:
# ---- for GNU g77 ----F77 = g77FFLAGS = -WallOFLAGS = -O2# ---- for SUN WS f77 ----##F77 = f77##FFLAGS = ##OFLAGS = -xO2all: test4g_f test8g_f testsg_ftest4g_f : testxg_f.o fft4g_f.o	$(F77) testxg_f.o fft4g_f.o -o test4g_ftest8g_f : testxg_f.o fft8g_f.o	$(F77) testxg_f.o fft8g_f.o -o test8g_ftestsg_f : testxg_f.o fftsg_f.o	$(F77) testxg_f.o fftsg_f.o -o testsg_ftestxg_f.o : testxg.f	$(F77) $(FFLAGS) $(OFLAGS) -c testxg.f -o testxg_f.offt4g_f.o : ../fft4g.f	$(F77) $(FFLAGS) $(OFLAGS) -c ../fft4g.f -o fft4g_f.offt8g_f.o : ../fft8g.f	$(F77) $(FFLAGS) $(OFLAGS) -c ../fft8g.f -o fft8g_f.offtsg_f.o : ../fftsg.f	$(F77) $(FFLAGS) $(OFLAGS) -c ../fftsg.f -o fftsg_f.oclean:	rm -f *.o

⌨️ 快捷键说明

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