fruitjam-doom/.travis.sh
2018-01-27 16:46:04 +02:00

10 lines
248 B
Bash
Executable file

#!/bin/sh
set -e
if [ "$ANALYZE" = "true" ] ; then
cppcheck --error-exitcode=1 -j2 -UTESTING -Iopl -Isrc -Isrc/setup opl pcsound src textscreen > /dev/null
else
./autogen.sh --enable-werror
make
make install DESTDIR=/tmp/whatever
make dist
fi