Files
prng-tests/compile
2024-03-22 00:25:17 +00:00

10 lines
159 B
Bash

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