📄 makefile
字号:
#!/usr/bin/make -f# COPYRIGHT (C) 2004 Eklectic Ally, Inc.---------------------------{{{## See EKLECTIC_LICENSE for information on legal usage of this file. ## -----------------------------------------------------------------}}}##----------------------------------------------------------------------# Uncomment and replace the following to set the name of the executable;# otherwise, the name of the directory will be used.#---#MODULE=NAME_OF_EXECUTABLE#----------------------------------------------------------------------# Uncoment and set the following to specify which files consitute source# files to be compiled into objects; otherwise, filenames matching *.cpp# will be used.#---#SRCS=LIST_OF_CPP_FILES#----------------------------------------------------------------------# Default mode (exe => create executable, sim => run the simulation)#---#DFLT=sim.PHONY: DEFAULTexample=$(notdir $(shell pwd))DEFAULT: $(MAKE) -C .. -f Makefile $(example)$(example).x: $(MAKE) -C .. -f Makefile MODULE=$(example) exe# COPYRIGHT (C) 2004 Eklectic Ally, Inc.---------------------------{{{## See EKLECTIC_LICENSE for information on legal usage of this file. ## -----------------------------------------------------------------}}}##END $Id: Makefile,v 1.3 2004/04/08 15:40:40 dcblack Exp $
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -