First commit
This commit is contained in:
parent
40bff34006
commit
57d60609e2
179 changed files with 59241 additions and 0 deletions
18
build-jar
Executable file
18
build-jar
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/sh
|
||||
# -*- mode: sh; tab-width: 8; encoding: utf-8-unix -*-
|
||||
|
||||
#Create our build folder
|
||||
|
||||
ROLE=privacy
|
||||
|
||||
#Create our build folder
|
||||
[ -d build ] || mkdir build
|
||||
#Java compilation
|
||||
javac -nowarn -d build -sourcepath src src/SelekTOR.java
|
||||
# Build runtime jar
|
||||
jar -cfe build/SelekTOR.jar SelekTOR -C build . -C src resources
|
||||
#Do proguard code optimisation
|
||||
# proguard -forceprocessing -include SelekTOR.pro -injars build/SelekTOR.jar -outjars SelekTOR.jar
|
||||
# Cleanup
|
||||
# rm build -rf
|
||||
cp -p build/SelekTOR.jar .
|
Loading…
Add table
Add a link
Reference in a new issue