makefile
来自「Petri网分析工具PIPE is open-source」· 代码 · 共 25 行
TXT
25 行
# makefile to compile the predator invariant analysis module and supporting classes
# and place the resulting .class files under /lib
# Author: Manos Papantoniou
### note that in the final version the -g option should be removed from all the
### makefiles since it
### produces larger and possible slower files. It is only useful during
### development.
JC = javac
LIBPATH = ../../../../../../../lib/
JCFLAGS = -d $(LIBPATH)
JD = javadoc
DOCPATH = ../../../../../../docs/
JDFLAGS = -private -version -author -d $(DOCPATH)
all: PredatorInvariantAnalysis.java Analysis.java InvariantDialog.java InvariantXmlFileReader.java
$(JC) $(JCFLAGS) *.java
$(JD) $(JDFLAGS) *.java
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?