prng-tests/compile
2024-03-22 09:23:16 +00:00

10 lines
159 B
Bash
Executable File

#!/bin/bash
CC=clang
CFLAGS="-g -Wall -Werror "
XORSHIFT_SRC="xorshift.c ppm.c"
XORSHIFT_OUT=xorshift
(set -x ; $CC $CFLAGS $XORSHIFT_SRC -o $XORSHIFT_OUT)