Compare commits

..

No commits in common. "main" and "0.2.1-beta" have entirely different histories.

View file

@ -1,5 +1,6 @@
#! /bin/bash
script_root=$(pwd)
CC:="clang"
echo "Creating folder for libraries"
mkdir lib
@ -11,7 +12,7 @@ git clone https://h2939863.stratoserver.net/git/XOR/simple_hashtable.git
cd simple_hashtable
echo "Building simple_hashtable library"
${CC:=clang} -c shash.c -o $script_root/lib/shash.o
$CC -c shash.c -o $script_root/lib/shash.o
echo "Delete source files"
cd $script_root