blob: c247de0caf83ee0dcec862a3f9feca607e43d6b1 (
plain) (
tree)
|
|
#!/bin/bash
export CC=gcc
export CXX=g++
export LOGFILE=mplint_po.log
source ./tools/ci/scripts/init.sh
export CXXFLAGS="-std=gnu++11"
do_init
gitclone https://gitlab.com/manaplus mplint.git
cd mplint
run_configure_simple
run_make
cd ..
echo " " >config.h
run_mplint $*
source ./tools/ci/scripts/exit.sh
exit 0
|