📄 makefile
字号:
# ARPACK++ v1.0 8/1/1997# c++ interface to ARPACK code.# examples/areig/sym 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/sym# compiling and linking all examples.all: asymreg asymshf asymgreg asymgshf asymgbkl asymgcay# compiling and linking each symmetric problem.asymreg: asymreg.o $(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o asymreg asymreg.o $(SUPERLU_LIB) $(ALL_LIBS)asymshf: asymshf.o $(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o asymshf asymshf.o $(SUPERLU_LIB) $(ALL_LIBS)asymgreg: asymgreg.o $(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o asymgreg asymgreg.o $(SUPERLU_LIB) $(ALL_LIBS)asymgshf: asymgshf.o $(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o asymgshf asymgshf.o $(SUPERLU_LIB) $(ALL_LIBS)asymgbkl: asymgbkl.o $(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o asymgbkl asymgbkl.o $(SUPERLU_LIB) $(ALL_LIBS)asymgcay: asymgcay.o $(CPP) $(CPP_FLAGS) -I$(AREIG_DIR) -I$(CSCMAT_DIR) -o asymgcay asymgcay.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 + -