summaryrefslogtreecommitdiff
path: root/java/Makefile
blob: 7885a13fabf2ff14cb889d06ea66e979a68c9ec4 (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

.PHONY: compile test eclipse clean package

all:
	compile

package:
	mvn package

install:
	mvn install

compile:
	mvn compile

test:
	mvn test

# generate .project and .classpath file for Eclipse
eclipse:
	mvn eclipse:eclipse

clean:
	mvn clean