makefile

来自「ARTMAP的C语言程序」· 代码 · 共 30 行

TXT
30
字号
#/******************************************************************************# * Makefile v.1 (7/5/01)# *# * Description:# *	Makefile for artmap_c.zip# *	'make' compiles,# *     'make clean' removes the executable, zip AND temporary files# *	'make zip' makes the zip of this package# * Authors:# *	Suhas Chelian, Norbert Kopco#*******************************************************************************all:	targSRCS = artmap.cpp\	README\	input.dat\	output.dat\	te_input.dat\	te_output.dat\	MakefileOBJS = artmap\	artmap_c.ziptarg:	artmap.cpp	gcc artmap.cpp -o artmap -lmzip:	$(SRCS)	zip artmap_c $(SRCS)clean:	rm -f $(OBJS) *~

⌨️ 快捷键说明

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