forked from gsdlab/chocosolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (18 loc) · 694 Bytes
/
Makefile
File metadata and controls
23 lines (18 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all:
mvn install
javadoc:
mvn javadoc:javadoc -Dlinksource=true
@echo "Developer reminder: Copy the contents of target/site/apidocs to the gh-pages branch to update the online Javadocs."
jacoco:
mvn org.jacoco:jacoco-maven-plugin:prepare-agent test org.jacoco:jacoco-maven-plugin:report
@echo "Developer note: firefox target/site/jacoco/index.html"
clean:
mvn clean
install:
mkdir -p $(to)
cp -f README.md $(to)/chocosolver-README.md
cp -f target/chocosolver-0.4.4-jar-with-dependencies.jar $(to)/chocosolver.jar
snapshotInstall:
mkdir -p $(to)
cp -f README.md $(to)/chocosolver-README.md
cp -f target/chocosolver-0.4.4-SNAPSHOT-jar-with-dependencies.jar $(to)/chocosolver.jar