makefile
来自「that is a useful book for people who lik」· 代码 · 共 20 行
TXT
20 行
# Makefile to compile Quantum Monte Carlo simulation for# Computational Physics# COMPHY directory path:COMPHY = $(HOME)/comphyLIBS = -L$(COMPHY)/lib -lran# Add -lm to LIBS on HP-UX 10FFLAGS = -OLDFLAGS = -OFC = f77# fort77 for HP-UX 10helium: helium.o $(FC) -o helium $(LDFLAGS) helium.o $(LIBS)helium.o: helium.f globHe $(FC) $(FFLAGS) -c helium.fclean: rm -f *.o helium
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?