-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmake.sh
executable file
·75 lines (60 loc) · 1.1 KB
/
make.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash
#source env.properties
PROJECT="JWT"
VER="1.0.0"
CP="classes:"
jars=`ls lib/*.jar`
for i in $jars;
do
CP="$CP:$i"
done
#clear
echo " "
echo "Project : $PROJECT performing task [ $1 ] "
echo " "
echo "Classpath : $CP "
function usage() {
echo "Usage : ./make.sh [target]"
echo "where target : one of [ clean compile ]"
}
function clean() {
rm -rf classes/com/*
echo "Task : [clean] completed"
echo " "
}
function compile() {
find src/ -name \*.java -print > file.list
javac -g -d classes -cp $CP @file.list
echo "Task : [compile] completed"
cp src/com/microlib/server/*.properties classes/com/microlib/server/
cp src/com/microlib/jndi/service/*.properties classes/com/microlib/jndi/service/
cp src/*.properties classes/
echo "Task : [copying resources] completed"
echo " "
}
function run() {
java -cp $CP com.microlib.server.TheServer 9000 100
echo "Task : [run] completed"
echo " "
}
if [ "$#" -lt 1 ]
then
usage
exit
fi
if [ "$1" = "clean" ]
then
clean
exit
fi
if [ "$1" = "compile" ]
then
clean
compile
exit
fi
if [ "$1" = "run" ]
then
run
exit
fi