From 08037bbe6bedf6c15a6e22cf8e69374f6a41938a Mon Sep 17 00:00:00 2001
From: night0721 <night@night0721.xyz>
Date: Sun, 9 Feb 2025 23:02:13 +0000
Subject: [PATCH] Fix CFLAGS

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 94c510e..c8705a8 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ TARGET = rd
 PREFIX ?= /usr/local
 BINDIR = $(PREFIX)/bin
 
-CFLAGS = -Os -march=native -mtune=native -pipe -s -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE
+CFLAGS += -std=c99 -pedantic -Wall -D_DEFAULT_SOURCE
 
 SRC != find src -name "*.c"