makefile.base
来自「ALGAE是一个快速创建算法演示的框架。目前支持的算法实现语言包括java和c」· BASE 代码 · 共 34 行
BASE
34 行
# # Basic patterns for building each subdirectory of AlgAE ##include make.config#include /d/javasrc/AlgAE/make.config.SUFFIXES: .java .classall : subdirs_all $(CLASSES)subdirs_all: for dir in $(SUBDIRS); \ do cd $$dir; $(MAKE) all; cd ..;\ done# Rebuild (if necessary) and run.run: all $(VM) -classpath "$(CLASSPATH)" $(MAIN) $(ROPTIONS)# Remove all class files from the project directory.clean: rm *.class for dir in $(SUBDIRS); \ do cd $$dir; $(MAKE) clean; cd ..;\ done# Implicit rule for making Java class files from Java# source files..java.class: $(COMPILER) $(COPTIONS) -classpath "$(CLASSPATH)" $?
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?