tiffread/compile
2024-04-20 16:01:21 +01:00

12 lines
199 B
Bash
Executable File

#!/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 )