From 4f2895e5c5c43241877cf2d183020d680d35d7c9 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Sat, 22 May 2021 08:53:43 +0300 Subject: [PATCH] minor makefile fixes --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1dd2941..8bdd16e 100644 --- a/Makefile +++ b/Makefile @@ -10,10 +10,10 @@ bin_fbdev = rbench_fbdev warn = -pedantic -Wall -Wno-deprecated-declarations dbg = -g -opt = -O3 -ffast-math +opt = -O3 -ffast-math -fno-strict-aliasing inc = -Isrc -CFLAGS = $(ccarch) -pedantic $(warn) $(dbg) $(opt) $(inc) -fno-strict-aliasing -MMD +CFLAGS = $(ccarch) $(warn) $(dbg) $(opt) $(inc) -MMD ASFLAGS = $(asarch) LDFLAGS_x11 = -L/usr/X11R6/lib -lX11 -lXext LDFLAGS_fbdev = -- 1.7.10.4