From ed171dc8a9fed20b44e8e89a2ac2ac2004cd110b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Tue, 15 Jun 2021 23:41:03 +0200 Subject: [PATCH] fix: makefile ovewrite of cflags --- image-viewer/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image-viewer/Makefile b/image-viewer/Makefile index c6bb56e..4726eec 100644 --- a/image-viewer/Makefile +++ b/image-viewer/Makefile @@ -17,7 +17,7 @@ BINARY=$(BIN_DIR)/$(NAME) SRC=$(wildcard $(SRC_DIR)/*.c) OBJ=$(patsubst $(SRC_DIR)/%.c, $(OBJ_DIR)/%.o, $(SRC)) -CFLAGS=-I$(INC_DIR) -Wall -Werror -g -O0 +CFLAGS+=-I$(INC_DIR) -Wall -Werror CFLAGS+=$(shell sdl2-config --cflags) #TARGET_IP ?= 192.168.202.127 -- 2.48.1