From 52fdf6319f79b41dbc8531556c0334d538d2dae3 Mon Sep 17 00:00:00 2001 From: the lemons Date: Tue, 7 Feb 2023 18:14:47 -0600 Subject: fix rounding of positions onscreen --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 50a35f4..4345b7e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ SDL_HEADERS=/usr/include/SDL2 +#CFLAGS=-g -Wall -fsanitize=undefined -fsanitize=address -I$(SDL_HEADERS) CFLAGS=-g -Wall -I$(SDL_HEADERS) -LFLAGS=-lSDL2 +#LFLAGS=-lSDL2 -fsanitize=undefined -fsanitize=address +LFLAGS=-lSDL2 -lm core: core.o procfs.o memview.o $(CC) -o $@ $^ $(LFLAGS) -- cgit v1.2.3