2022-08-16 13:56:04 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# The build fails if libjson-c-dev is not installed.
|
|
|
|
# That's OK, we don't otherwise need it and don't
|
|
|
|
# even bother testing for it in configure.ac.
|
|
|
|
# However, in that case, skip the test suite.
|
|
|
|
|
2023-05-13 22:00:04 +02:00
|
|
|
export CFLAGS="-g"
|
|
|
|
|
2022-08-16 13:56:04 +02:00
|
|
|
make -f Makefile.orig mustach || exit 77
|
2023-05-13 22:00:04 +02:00
|
|
|
make -f Makefile.orig clean || true
|
|
|
|
make -f Makefile.orig basic-tests
|
2022-08-16 13:56:04 +02:00
|
|
|
make -f Makefile.orig clean || true
|