Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / ColonetGUI / Makefile @ 396

History | View | Annotate | Download (1.02 KB)

1 372 gtress
# Colonet GUI Makefile
2
# Gregory Tress
3
#
4
# DIR is the name of the output directory
5
# JCFLAGS are the compiler options
6
# JCWARN specifies which warnings should be displayed
7
#
8
# Complier Flags
9
#  -g            Generate all debugging info
10
#  -d <dir>      Specify where to place generated class files
11
#  -target <vm>  Generate class files for a specific VM release (i.e. 1.6)
12
#  -Xlint        Enable warnings
13
14
JC = javac
15
DIR = build
16
JCFLAGS = -g -d $(DIR) -target 1.5
17
JCWARN = -Xlint:deprecation,unchecked,fallthrough,path,finally
18
19
# Java file compilation instructions
20
21 387 gtress
default: $(DIR)/Colonet.class $(DIR)/ColonetServerInterface.class $(DIR)/Colonet.jar
22
23
$(DIR)/Colonet.jar:
24 396 gtress
	cd $(DIR); jar cvf Colonet.jar *.class
25 372 gtress
26 387 gtress
$(DIR)/Colonet.class: Colonet.java
27 372 gtress
	$(JC) $(JCWARN) $(JCFLAGS) Colonet.java
28
29
$(DIR)/ColonetServerInterface.class: ColonetServerInterface.java
30
	$(JC) $(JCWARN) $(JCFLAGS) ColonetServerInterface.java
31
32 374 gtress
install:
33 384 gtress
	cp $(DIR)/Colonet.jar /var/www/colonet
34 374 gtress
	cp index.html /var/www/colonet
35 372 gtress
36
clean:
37
	$(RM) $(DIR)/*.class
38
	$(RM) $(DIR)/*.jar