📄 makefile.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 + -