21 lines
330 B
Bash
21 lines
330 B
Bash
|
|
#!/bin/bash
|
||
|
|
#If not executing correctly, try converting to unix with :set ff=unix
|
||
|
|
|
||
|
|
cd /home/craig/workspace/git/libeye
|
||
|
|
make install
|
||
|
|
|
||
|
|
cd /home/craig/workspace/git/cppjson
|
||
|
|
make install
|
||
|
|
|
||
|
|
cd ../cppcore
|
||
|
|
make install
|
||
|
|
|
||
|
|
cd ../sleds-core-api
|
||
|
|
make install
|
||
|
|
|
||
|
|
cd ../javamq
|
||
|
|
mvn -DskipTests install
|
||
|
|
|
||
|
|
cd ../walker-indexer
|
||
|
|
mvn -DskipTests install
|