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

📄 makefile

📁 ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.
💻
字号:
# ARPACK++ v1.0 8/1/1997# c++ interface to ARPACK code.# examples/areig/complex directory makefile.# including other makefiles.include ../../../Makefile.inc# defining areig directory.AREIG_DIR = $(ARPACKPP_DIR)/examples/areig# defining cscmat directory.CSCMAT_DIR = $(ARPACKPP_DIR)/examples/matrices/complex# compiling and linking all examples.all: acompreg acompshf acompgre acompgsh# compiling and linking each complex problem.acompreg:        acompreg.o	$(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o acompreg acompreg.o $(SUPERLU_LIB) $(ALL_LIBS)acompshf:        acompshf.o	$(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o acompshf acompshf.o $(SUPERLU_LIB) $(ALL_LIBS)acompgsh:        acompgsh.o	$(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o acompgsh acompgsh.o $(SUPERLU_LIB) $(ALL_LIBS)acompgre:        acompgre.o	$(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o acompgre acompgre.o $(SUPERLU_LIB) $(ALL_LIBS)# defining cleaning rule..PHONY:	cleanclean:	rm -f *~ *.o core# defining pattern rules.%.o:	%.cc	$(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -I$(SUPERLU_DIR) -c $<

⌨️ 快捷键说明

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