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

📄 makefile.base

📁 ALGAE是一个快速创建算法演示的框架。目前支持的算法实现语言包括java和c
💻 BASE
字号:
# # 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -