#!/bin/bash CC=clang CFLAGS="-g -Wall -Werror -pedantic -fsanitize=address -fsanitize=undefined" INCLUDES="-Isrc" SRC="\ ./src/*.c \ " OUT=tiffread ( set -x ; $CC $CFLAGS $INCLUDES $SRC -o $OUT )