📄 makefile
字号:
#/******************************************************************************# * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -