#!/bin/bash

set -e

gcc -pedantic -Wall -Werror -o test-run \
    debian/tests/simple-build.c \
    $(pkg-config --cflags --libs libassuan)

./test-run
rm -f test-run
