summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicksphere.ch>2022-11-29 00:00:00 +0000
committerNicholas Johnson <nick@nicksphere.ch>2022-11-29 00:00:00 +0000
commit3261c276935c0e98746209d376261c524741bd7943406d8069b0629c94440c2d (patch)
tree51846855788533b62f12924ac31933dd92e8b6b61bcfbaae03d8d0eb4eff1031
parent4bda5b88b460fcd3d7ba5af31ebd99239b0e6a6b698734c3e3155ab3cb46b905 (diff)
Add optimization compiler flagv1.3.2
-rw-r--r--Makefile2
-rw-r--r--gemini2html.12
-rw-r--r--src/main.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ad8356e..910aa7f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC = gcc
-CFLAGS = -W
+CFLAGS = -W -O2
RM = rm -rf
SRCDIR = src
diff --git a/gemini2html.1 b/gemini2html.1
index b9b74a3..496d17b 100644
--- a/gemini2html.1
+++ b/gemini2html.1
@@ -1,4 +1,4 @@
-.TH GEMINI2HTML "1" "January 2022" "gemini2html v1.3.1"
+.TH GEMINI2HTML "1" "January 2022" "gemini2html v1.3.2"
.SH NAME
gemini2html \- convert gemini text to HTML
.SH SYNOPSIS
diff --git a/src/main.c b/src/main.c
index 4056b4b..f310723 100644
--- a/src/main.c
+++ b/src/main.c
@@ -23,7 +23,7 @@
#include "gemini2html.h"
-#define VERSION "1.3.1"
+#define VERSION "1.3.2"
/* displays the help menu */
void display_help_text(char* prog) {