📄 makefile
字号:
######## Java Makefile automatically generated by jmaker 2.4#### Creation date: Mon Nov 10 11:56:46 2008######## Java compiler settingsJAVAC = javac#JAVAC_FLAGS = -classpath "/scratch/programming/java/worksheet:/usr/java/jdk1.5.0_16/jre/lib/charsets.jar:/usr/java/jdk1.5.0_16/jre/lib/deploy.jar:/usr/java/jdk1.5.0_16/jre/lib/javaws.jar:/usr/java/jdk1.5.0_16/jre/lib/jce.jar:/usr/java/jdk1.5.0_16/jre/lib/jsse.jar:/usr/java/jdk1.5.0_16/jre/lib/plugin.jar:/usr/java/jdk1.5.0_16/jre/lib/rt.jar:/usr/java/jdk1.5.0_16/lib/dt.jar:/usr/java/jdk1.5.0_16/lib/htmlconverter.jar:/usr/java/jdk1.5.0_16/lib/jconsole.jar:/usr/java/jdk1.5.0_16/lib/sa-jdi.jar:/usr/java/jdk1.5.0_16/lib/tools.jar" JAVAC_FLAGS=#### Targets settingsCLASS_FILES = \ComplexComputing.class \ComplexNumber.class \ViewerJulia.class \ViewerMandelbrot.classSUBDIRS = \SUBDIRS_CLEAN = $(patsubst %,%.clean,$(SUBDIRS))SUBDIRS_MAKE = $(patsubst %,%.make,$(SUBDIRS))#### Main targets# Defaultall: $(CLASS_FILES) $(SUBDIRS_MAKE)# Cleanupclean: $(SUBDIRS_CLEAN) $(RM) *.class @echo "Cleanup done."# Rebuildbuild: clean all @echo "Rebuild done."#### Aux targets# Files compilation%.class: %.java $(JAVAC) $(JAVAC_FLAGS) -g $<# Sub-directories compilation%.make: $(MAKE) -k -C $(subst .make,,$@)# Sub-directories cleanup%.clean: $(MAKE) -k -C $(subst .clean,,$@) clean# Phony Targets.PHONY: clean build help.PHONY: check-syntaxcheck-syntax: $(JAVAC) -g $(CHK_SOURCES)#### Helphelp: @echo "Usage: make [targets...]" @echo "" @echo "where targets include:" @echo "" @echo " help display this help" @echo " all compile all (default)" @echo " clean remove all class files" @echo " build rebuild all inconditionnally" @echo " <class file> compile the given file" @echo " <subdir>.make compile the given subdir" @echo " <subdir>.clean clean the given subdir"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -