Codebase list tlsh / lintian-fixes/main make.sh
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

make.sh @lintian-fixes/mainraw · history · blame

#!/bin/sh

if [ $# -eq 1 -a "$1" = "debug" ]; then
  mkdir -p build/debug
  cd build/debug
  cmake -DCMAKE_BUILD_TYPE=Debug ../..
else
  mkdir -p build/release
  cd build/release
  cmake ../.. 
fi

make
make test