You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
211 B
Bash
13 lines
211 B
Bash
![]()
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
mkdir build
|
||
|
|
||
|
find src/ -name "*.java" > listFile.tmp
|
||
|
|
||
|
javac -target 1.6 -source 1.6 -d build @listFile.tmp
|
||
|
|
||
|
jar cfm modelviewer.jar manifest-modelviewer.mf -C build/ com/
|
||
|
|
||
|
rm listFile.tmp
|
||
|
rm -r build
|