mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
19 lines
257 B
Bash
Executable File
19 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -rf build/ include/ lib/
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
../configure \
|
|
--prefix=$HOME/PhasicFlow/phasicFlow-v-1.0/thirdParty/Zoltan/ \
|
|
--with-gnumake \
|
|
--with-id-type=uint
|
|
--disable-tests
|
|
--disable-examples
|
|
|
|
make everything -j4
|
|
make install
|
|
|
|
cd ../
|