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