📄 makefile
字号:
# ARPACK++ v1.0 8/1/1997# c++ interface to ARPACK code.# examples/product/sym directory makefile.# including other makefiles.include ../../../Makefile.inc# defining objects. EXMP_INC = $(ARPACKPP_DIR)/examples/matprodEXS_INC = $(ARPACKPP_DIR)/examples/matprod/sym# compiling and linking all examples.all: symreg symshft symgreg symgshft symgbklg symgcayl# compiling and linking each symmetric problem.symreg: symreg.o $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -o symreg symreg.o $(ALL_LIBS) symshft: symshft.o $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -o symshft symshft.o $(ALL_LIBS)symgreg: symgreg.o $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -o symgreg symgreg.o $(ALL_LIBS)symgshft: symgshft.o $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -o symgshft symgshft.o $(ALL_LIBS)symgbklg: symgbklg.o $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -o symgbklg symgbklg.o $(ALL_LIBS)symgcayl: symgcayl.o $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -o symgcayl symgcayl.o $(ALL_LIBS)# defining cleaning rule..PHONY: cleanclean: rm -f *~ *.o core# defining pattern rules.%.o: %.cc $(CPP) $(CPP_FLAGS) -I$(EXMP_INC) -I$(EXS_INC) -c $<
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -