blob: 1f1c3b34ec25d5d034437172d9b3af9fe1555d10 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# project classes configuration
MAINCLASS := subconscious.Subconscious
SOURCES := $(shell find src -iname '*.java')
# debug or release mode
DEBUG=1
# java compiler configuraton
JAVAC := javac
JAVAC_ARGS := -Xlint:all \
-classpath lib/gson-2.6.2.jar:. \
-sourcepath src
# java debugger configuration
JDB := jdb
JDB_ARGS := -attach jdbconn
USE_JDB := 0
# java runtime configuration
JAVA := java
JAVA_ARGS := -cp ../lib/gson-2.6.2.jar:. -Xmx2G
ifeq ($(USE_JDB),1)
JAVA_ARGS += -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000
endif
ifeq ($(DEBUG),1)
JAVA_ARGS += -enableassertions
endif
# recipes
.PHONY: all run pack classes dirs clean
all: classes
classes: dirs
$(JAVAC) $(JAVAC_ARGS) -d build $(SOURCES)
.ONESHELL:
run: classes
cd build
$(JAVA) $(JAVA_ARGS) $(MAINCLASS)
# TODO: recipe for jar file
dirs:
mkdir -p build
clean:
rm -rd build
|