summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2026-04-10 17:07:16 +0200
committerczjstmax <jstmaxlol@disroot.org>2026-04-10 17:07:16 +0200
commitaccd3b2d959bfc0e8a8aa0f148ebef5871529f47 (patch)
tree763f56809be1d8f1e5c29a0e18f338cb71b8a232 /Makefile
parentdc391b4360aa8bda3df80a781a0e15cf1ca1d69f (diff)
release 2.2 -- fixes, 'betterifications' and reworked `echo`
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 37d7840..4551457 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@ CC = gcc
IN = nm.c
OUT = nshm
LIBS = -lreadline
-OPTS = -O2 -Wall -Wextra -pedantic
-OPTSDBG = -O0 -g -Wall -Wextra -pedantic
+OPTS = -O2 -Wall -Wextra -pedantic -std=c99
+OPTSDBG = -O0 -g -Wall -Wextra -pedantic -std=c99
debug:
$(CC) -o$(OUT) $(LIBS) $(OPTSDBG) $(IN)