Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (1.02 KB)

1
# 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
default: $(DIR)/Colonet.class $(DIR)/ColonetServerInterface.class $(DIR)/Colonet.jar
22

    
23
$(DIR)/Colonet.jar: 
24
	cd $(DIR); jar cvf Colonet.jar *.class
25

    
26
$(DIR)/Colonet.class: Colonet.java
27
	$(JC) $(JCWARN) $(JCFLAGS) Colonet.java
28

    
29
$(DIR)/ColonetServerInterface.class: ColonetServerInterface.java
30
	$(JC) $(JCWARN) $(JCFLAGS) ColonetServerInterface.java
31

    
32
install:
33
	cp $(DIR)/Colonet.jar /var/www/colonet
34
	cp index.html /var/www/colonet
35

    
36
clean:
37
	$(RM) $(DIR)/*.class
38
	$(RM) $(DIR)/*.jar