makefile

来自「kd tree java implementation 2」· 代码 · 共 22 行

TXT
22
字号
## KD_TREE2#      A Fortran 95 module and C++ classes#      for finding close neighbors in data sets of#      points in k-dimensional Euclidean space. #all:	(cd src-c++;  make)	(cd src-f90; make)MY_DIR=`basename ${PWD}`tar:	/bin/rm *~ */*~; cd ..; tar zcvf ${MY_DIR}.tgz ${MY_DIR}	cd ..; /bin/rm ${MY_DIR}.zip; zip -r ${MY_DIR}.zip ${MY_DIR}clean:	(cd src-c++; make clean)	(cd src-f90; make clean) 

⌨️ 快捷键说明

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