public
Description:
Homepage: http://tjgames.org
Clone URL: git://github.com/ComputerDruid/gwar.git
gwar / Makefile
100644 29 lines (22 sloc) 0.386 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
JFLAGS = -g -d build -cp build
JC = javac
.SUFFIXES: .java .class
.java.class:
$(JC) $(JFLAGS) $*.java
 
CLASSES = \
GWar.java \
Hero.java \
Bumper.java \
SpeedBumper.java \
Item.java \
MainMenu.java
 
default: classes
 
classes: $(CLASSES:.java=.class)
 
init:
$(JC) $(JFLAGS) *.java
 
run:
cd build; java GWar
debug:
cd build; java GWar -d
 
clean:
$(RM) build/*.class