mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
16 lines
202 B
Bash
Executable File
16 lines
202 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
TARGET=m4
|
|
|
|
function _install()
|
|
{
|
|
cd ..
|
|
QP_ROOT=$PWD
|
|
cd -
|
|
cd ${BUILD}
|
|
./configure && make || exit 1
|
|
ln -sf ${PWD}/src/m4 ${QP_ROOT}/bin || exit 1
|
|
}
|
|
|
|
source scripts/build.sh
|