makefile

来自「ARTMAP的MATLAB工具箱」· 代码 · 共 35 行

TXT
35
字号
#/******************************************************************************# * Makefile v.1 (7/5/01)# *# * Description:# *	Makefile for artmap_m.zip# *	'make' starts Matlab# *	'make clean' removes the zip of this package AND temporary files# *	'make zip' makes the zip of this package# * Authors:# *	Suhas Chelian, Norbert Kopco#*******************************************************************************all:	targSRCS = artmap_shell.m\	artmap_shell_vote.m\	artmap_init.m\	artmap_train_large.m\	artmap_train_small.m\	artmap_test_large.m\	artmap_test_small.m\	README\	input.dat\	output.dat\	te_input.dat\	te_output.dat\	MakefileOBJS = artmap_m.ziptarg:	artmap_shell.m	matlabzip:	$(SRCS)	zip artmap_m $(SRCS)clean:	rm -f $(OBJS) *~

⌨️ 快捷键说明

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