From 2a9e2f245931b13e1eed72864be8f5580c6b0c21 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Fri, 4 Jun 2021 02:37:46 +0200 Subject: [PATCH] Optimized generate.sh --- INCLUDE/generate.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/INCLUDE/generate.sh b/INCLUDE/generate.sh index 7c6bd76..9cb168b 100644 --- a/INCLUDE/generate.sh +++ b/INCLUDE/generate.sh @@ -1,8 +1,7 @@ # Build the include files -echo Buildin the include files... +echo "Building the include files..." echo ../Hazelnupp/*.cpp | sed 's/\.\.\/Hazelnupp\/main\.cpp//g' | xargs deggl -o Hazelnupp -i # Verify that they compile cleanly -echo Verifying that they compile -g++ Hazelnupp.cpp -c -Wall -Wextra -Wpedantic -rm -f Hazelnupp.o +echo "Verifying that they compile" +g++ Hazelnupp.cpp -c -S -o - -Wall -Wextra -Wpedantic > /dev/null