From 4e7dada127c29f9b6aac8f91a5a4eff145a0981e Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Sat, 21 Aug 2021 13:06:02 -0700 Subject: [PATCH] Makefile: default cflags --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 6b15eca..ebce4ab 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ DEP = $(wildcard *.h) SRC = main.c native.c http.c hex.c token.c storage.c base75.c stats.c OBJ = $(SRC:.c=.o) NAME = apocrypha +override CFLAGS += -Wall -std=gnu11 -D_POSIX_C_SOURCE=200809L -D_GNU_SOURCE all: $(NAME)