You can not 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
460 B
13 lines
460 B
#!/bin/sh
|
|
# very simple shell script to compile the java
|
|
# sources and generate the jar file
|
|
set -e # exit on error
|
|
set -x # be verbose
|
|
rm -rf java-build-dir/*
|
|
mkdir -p java-build-dir/images
|
|
cp images/*.gif images/*.png java-build-dir/images/
|
|
pwd=`pwd`;
|
|
javac -d java-build-dir -deprecation -target 1.2 `find org/kde netscape -name '*.java'` \
|
|
&& cd java-build-dir && jar c0vf $pwd/kjava.jar images `find org/kde netscape -name *.class`
|
|
|