blob: 4ffc5a45a249833c37496b743ed8a0c523798a8b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
CC=gcc
OUTPUT_MULTIPLIER=0x6ab64cc1
rel:
mkdir -p ./build
$(CC) -Wall -Werror -pedantic -O2 -march=x86-64-v3 -mavx2 -std=gnu23 -DOUTPUT_MULTIPLIER=${OUTPUT_MULTIPLIER} -shared -fPIC ./xorshift.c -o ./build/libxorshift.so
debug:
mkdir -p ./build
$(CC) -Wall -Werror -pedantic -O2 -march=x86-64-v3 -mavx2 -std=gnu23 -ggdb -DOUTPUT_MULTIPLIER=${OUTPUT_MULTIPLIER} -shared -fPIC ./xorshift.c -o ./build/libxorshift.so
clean:
rm -rf ./build
|