9 lines
227 B
Bash
9 lines
227 B
Bash
|
# 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"
|
||
|
g++ Eule.cpp -c -S -o - -Wall -Wextra -Wpedantic > /dev/null
|
||
|
|