blob: 4b7b60285220754f6a2b967418e36c6626c0b867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.PHONY: build pack test clean
build:
mvn --no-transfer-progress compile
pack:
mvn --no-transfer-progress package
test:
$(MAKE) -C ../../exports
mvn --no-transfer-progress test
clean:
rm -rf target/
|