📄 gnumakefile
字号:
# file: GNUmakefile## this make file builds the driver program using GNU make and# the isip make template# # define the default compiler#ISIP_JAVA_COMPILER = javac# source files#ISIP_REQUIRE = JAVA JAVAC JAR SH ISIP_FILES = *.java# driver program#ISIP_DRIVER_SCRIPT = isip_lm_creator.sh# define compilation flags for the Java compiler#ISIP_JFLAGS =# depenedencies#ISIP_DEPS = # define a resource install directive#ISIP_RESOURCE_INSTALL = copy-resourcesISIP_RESOURCE_CLEAN = delete-resources# define the jarfile name#ISIP_JARFILE_NAME = LMCreator.jarIMAGES_DIR = $(ISIP_DEVEL)/lib/images/isip_lm_creator/TEXT_DIR = $(ISIP_DEVEL)/lib/text/isip_lm_creator# make template#include $(ISIP_DEVEL)/scripts/make/compile_java.make# install the images and text files to the lib directory#copy-resources: echo "> installing the resource files" mkdir -p $(TEXT_DIR) cp -fr text/*.txt $(TEXT_DIR) echo "> installing the images" mkdir -p $(IMAGES_DIR) cp -fr images/*.gif $(IMAGES_DIR)# delete the images from the lib directory#delete-resources: echo "> deleting the resource files" -rm -fr $(TEXT_DIR) echo "> deleting the images" -rm -fr $(IMAGES_DIR)## end of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -