makefile

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

TXT
29
字号
# ARPACK++ v1.0 8/1/1996# c++ interface to ARPACK code.# examples/product/simple directory makefile.# including other makefiles.include ../../../Makefile.inc# compiling and linking all examples.all: symsimp# compiling and linking a simple arpack++ problem.symsimp: 	symsimp.o	$(CPP) $(CPP_FLAGS) -o symsimp symsimp.o $(ALL_LIBS) # defining cleaning rule..PHONY:	cleanclean:	rm -f *~ *.o core# defining pattern rules.%.o:	%.cc	$(CPP) $(CPP_FLAGS) -c $<

⌨️ 快捷键说明

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