makefile

来自「ARPACK is a collection of Fortran77 subr」· 代码 · 共 49 行

TXT
49
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?