From 24b1f1eb910c761f04e58410bad5ba3e993321c1 Mon Sep 17 00:00:00 2001 From: Urban Wallasch Date: Sun, 28 Jul 2019 10:36:08 +0200 Subject: [PATCH] * Added -O2 to compiler flags. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 260e292..b3b391e 100644 --- a/Makefile +++ b/Makefile @@ -13,8 +13,8 @@ SDK_INCLUDES=\ -Isdk/include/amtrucks/ \ -Isdk/include/eurotrucks2 -CFLAGS=-Wall -Wextra -std=c99 -DDEBUG -I. -CPPFLAGS=-Wall -DLOGGING -I. +CFLAGS=-Wall -Wextra -std=c99 -O2 -DDEBUG -I. +CPPFLAGS=-Wall -O2 -DLOGGING -I. UNAME:= $(shell uname -s) -- 2.30.2