From d25e8a43db7cafe7453cce214cfb5e7adab10452 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 10 Oct 2022 21:24:21 +0200 Subject: [PATCH] build system: strip apps --- apps/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/Makefile b/apps/Makefile index ad6eb044..10d8984a 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -11,6 +11,7 @@ CFLAGS := -Wall -Wextra -Werror $(APPS_BIN)/%: $(APPS_SRC)/%.c @mkdir -p $(@D) $(CC) $(CFLAGS) -o $@ $^ + $(STRIP) $@ build: $(REAL_APPS)