makefile

来自「中文JAVA编程思想第二版,一本很好的JAVA入门书籍!」· 代码 · 共 23 行

TXT
23
字号
# From Thinking in Java, 2nd Edition
# At http://www.BruceEckel.com
# (c) Bruce Eckel 2000
# Copyright notice in Copyright.txt
# Automatically-generated MAKEFILE 
# For examples in directory .\c15\corba
# using the JDK 1.2 compiler
# Invoke with: make

JVC = javac
JVCFLAGS =
.SUFFIXES : .class .java
.java.class :
	$(JVC) $(JVCFLAGS) $<

all:  \
	RemoteTimeServer.class \
	RemoteTimeClient.class


RemoteTimeServer.class: RemoteTimeServer.java
RemoteTimeClient.class: RemoteTimeClient.java

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?