From 4ae6e533fa4b69c7077ce40e1c9591d639958814 Mon Sep 17 00:00:00 2001 From: anth64 Date: Sat, 10 Jan 2026 16:13:57 +0100 Subject: [PATCH] Switch gcc to use available c compiler --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ffd073..33fb1c9 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ OBJS_DEBUG := $(patsubst $(SRC_DIR)/%.c,$(OBJ_DIR)/debug/%.o,$(SRCS)) OBJS_RELEASE := $(patsubst $(SRC_DIR)/%.c,$(OBJ_DIR)/release/%.o,$(SRCS)) # Compiler and flags -CC := gcc +CC := cc CFLAGS_DEBUG := -g -O0 -Wall -Wpedantic -I$(INC_DIR) -std=c89 CFLAGS_RELEASE := -O2 -Wall -Wpedantic -I$(INC_DIR) -std=c89