Skip to content

Commit a38b097

Browse files
committed
add: libcobj/compile.sh that builds java source code
1 parent 9a49027 commit a38b097

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

libcobj/compile.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SRC_BASE_PATH=src/jp/osscons/opensourcecobol/libcobj/
2+
3+
javac -encoding UTF8 -d build \
4+
${SRC_BASE_PATH}/*.java \
5+
${SRC_BASE_PATH}/call/*.java \
6+
${SRC_BASE_PATH}/common/*.java \
7+
${SRC_BASE_PATH}/data/*.java \
8+
${SRC_BASE_PATH}/exceptions/*.java \
9+
${SRC_BASE_PATH}/file/*.java \
10+
${SRC_BASE_PATH}/termio/*.java
11+
12+
cd build && jar cf libcobj.jar jp

0 commit comments

Comments
 (0)