Skip to content

Commit 29e50ab

Browse files
authored
Merge pull request #29 from uobteachingtechnologist/EdNutting-build-script
Add Linux build script
2 parents cee3f4c + 5796015 commit 29e50ab

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
mkdir ./out
2+
find -name "*.java" > sources.txt
3+
javac -d ./out @sources.txt
4+
cd ./out
5+
find ../src -name "*.png" -exec cp '{}' ./com/modsim/res/ \;
6+
jar cfm ../ModuleSim-Test.jar ../src/META-INF/MANIFEST.MF ./
7+
cd ../
8+
rm ./sources.txt

0 commit comments

Comments
 (0)