2022-01-20 22:25:12 +01:00
|
|
|
# Build the include files
|
|
|
|
echo "Building the include files..."
|
|
|
|
deggl -i ../Eule/*.cpp -o Eule
|
|
|
|
|
|
|
|
# Verify that they compile cleanly
|
|
|
|
echo "Verifying that they compile"
|
2022-01-20 23:12:32 +01:00
|
|
|
g++ Eule.cpp -c -S -o - -Wall -Wextra -Wpedantic -mavx > /dev/null
|
2022-01-20 22:25:12 +01:00
|
|
|
|