8 lines
241 B
Bash
8 lines
241 B
Bash
# Build the include files
|
|
echo "Building the include files..."
|
|
deggl -i ../Hazelnupp/*.cpp -o Hazelnupp
|
|
|
|
# Verify that they compile cleanly
|
|
echo "Verifying that they compile"
|
|
g++ Hazelnupp.cpp -c -S -o - -Wall -Wextra -Wpedantic > /dev/null
|