GCrypt/INCLUDE/generate.sh
2021-12-06 03:06:59 +01:00

8 lines
251 B
Bash

# Compile single-header
deggl -i ../Feistel/*.cpp --out GhettoCipher --loc
# Verify that this builds cleanly via g++
echo "Verifying build..."
g++ GhettoCipher.cpp -c -S -o - -Wall > /dev/null
echo "If you saw no compiler errors, everything's good!"