12 lines
199 B
Bash
Executable File
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 )
|