From 8e57df518f31ede27e71e2d834299df1c69d8036 Mon Sep 17 00:00:00 2001 From: apio Date: Tue, 11 Oct 2022 19:57:24 +0200 Subject: [PATCH] apps: build with optimizations enabled --- apps/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Makefile b/apps/Makefile index c95a1265..cf06f37e 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -6,7 +6,7 @@ APPS_BIN := $(APPS_DIR)/bin REAL_APPS := $(patsubst %, $(APPS_BIN)/%, $(APPS)) -CFLAGS := -Wall -Wextra -Werror +CFLAGS := -Wall -Wextra -Werror -Os $(APPS_BIN)/%: $(APPS_SRC)/%.c @mkdir -p $(@D)