⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 Petri网分析工具PIPE is open-source
💻
字号:
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -