summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkiz <skiznet@aol.com>2024-10-02 23:59:43 -0400
committerSkiz <skiznet@aol.com>2024-10-02 23:59:43 -0400
commit4cc9fb95e4f06858c01c8b91c6ee83a49d295116 (patch)
tree3fa560cc5fa03a898be9a41d16875676270e6779
parent6bbaf8b3e9e6b7412f600dcdadc4883a8453b20c (diff)
Updated -O3 to -O2
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6aa3600..0d18cd4 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ BINDIR ?= $(PREFIX)/bin
TARGET = spwd
all:
- cc -O3 -march=native -std=c99 -pedantic -o $(TARGET) src/spwd.c
+ cc -O2 -march=native -std=c99 -pedantic -o $(TARGET) src/spwd.c
install:
install -Dm755 $(TARGET) $(BINDIR)/$(TARGET)